Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
}

Write-Host "::group::Building $rel"
dotnet build $proj.FullName -c Release --nologo
dotnet build $proj.FullName -c Release --nologo -warnaserror
$code = $LASTEXITCODE
Write-Host "::endgroup::"
if ($code -eq 0) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
</PropertyGroup>

<PropertyGroup>
<NoWarn>1701;1702;NU1701</NoWarn>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Rhino.Inside" Version="8.0.6-beta" />
</ItemGroup>
Expand Down
4 changes: 4 additions & 0 deletions rhino.inside/dotnet-netcore/HelloWorld/HelloWorld.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
<SupportedOSPlatformVersion>8.0</SupportedOSPlatformVersion>
</PropertyGroup>

<PropertyGroup>
<NoWarn>1701;1702;NU1701</NoWarn>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Rhino.Inside" Version="8.0.6-beta" />
</ItemGroup>
Expand Down
6 changes: 5 additions & 1 deletion rhino.inside/dotnet-netcore/SampleConvert/Convert.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0-Windows</TargetFramework>
<TargetFramework>net8.0-windows</TargetFramework>
</PropertyGroup>

<PropertyGroup>
<NoWarn>1701;1702;NU1701</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading