Skip to content

Commit

Permalink
Future ready
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveGilham committed Jul 13, 2023
1 parent 290e419 commit ffaf6db
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AltCover.DataCollector/AltCover.DataCollector.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>AltCover</RootNamespace>
<AssemblyName>AltCover.DataCollector</AssemblyName>
<NoWarn>1701;1702;NU1603</NoWarn>
<NoWarn>$(NoWarn);1701;1702;NU1603</NoWarn>
<DocumentationFile />
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion AltCover.FontSupport/AltCover.FontSupport.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<RootNamespace>AltCover.FontSupport</RootNamespace>
<AssemblyName>AltCover.FontSupport</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<NoWarn>1701;1702;8002</NoWarn>
<NoWarn>$(NoWarn);1701;1702;8002</NoWarn>
<WarningsAsErrors>NU1605</WarningsAsErrors>
<DocumentationFile />
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion AltCover.Monitor/AltCover.Monitor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>net20;netstandard2.0</TargetFrameworks>
<RootNamespace>AltCover</RootNamespace>
<AssemblyName>AltCover.Monitor</AssemblyName>
<NoWarn>1701;1702;NU1603</NoWarn>
<NoWarn>$(NoWarn);1701;1702;NU1603</NoWarn>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Debug'">
Expand Down
4 changes: 4 additions & 0 deletions AltCover.Visualizer.sln
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,16 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build Items", "Build Items"
nupkg\build\netstandard2.0\AltCover.targets = nupkg\build\netstandard2.0\AltCover.targets
Build\Apply-Xslt.ps1 = Build\Apply-Xslt.ps1
Build\common-rules.xml = Build\common-rules.xml
Directory.Build.props = Directory.Build.props
Directory.Build.targets = Directory.Build.targets
Directory.Packages.props = Directory.Packages.props
.config\dotnet-tools.json = .config\dotnet-tools.json
Build\get-token.fsx = Build\get-token.fsx
global.json = global.json
Build\Infrastructure.snk = Build\Infrastructure.snk
Build\msbuildtest.proj = Build\msbuildtest.proj
OutputBuildProps.props = OutputBuildProps.props
OutputBuildTargets.props = OutputBuildTargets.props
Build\pester.ps1 = Build\pester.ps1
Build\Pester.Tests.ps1 = Build\Pester.Tests.ps1
Build\powershell.ps1 = Build\powershell.ps1
Expand Down
3 changes: 2 additions & 1 deletion OutputBuildProps.props
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<AssemblyOriginatorKeyFile>$(InfrastructureKey)</AssemblyOriginatorKeyFile>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<NoWarn/>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='Debug'">
Expand All @@ -31,7 +32,7 @@
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<NoWarn>52</NoWarn>
<NoWarn>$(NoWarn);52</NoWarn>
<Tailcalls>true</Tailcalls>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'!='Debug'">
Expand Down

0 comments on commit ffaf6db

Please sign in to comment.