Skip to content

Commit

Permalink
Suppressed build-related warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
fubar-coder committed Jul 22, 2019
1 parent 436332e commit a11219e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Global.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@
<Copyright>Fubar Development Junker 2016-2018</Copyright>
<Company>Fubar Development Junker</Company>
<Authors>Fubar Development Junker</Authors>
<PackageLicenseUrl>https://github.com/FubarDevelopment/WebDavServer/blob/master/LICENSE</PackageLicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/FubarDevelopment/WebDavServer</PackageProjectUrl>
<RepositoryUrl>https://github.com/FubarDevelopment/WebDavServer.git</RepositoryUrl>
<PackageReleaseNotes>https://github.com/FubarDevelopment/WebDavServer/releases</PackageReleaseNotes>
<RepositoryType>git</RepositoryType>
<MinClientVersion>3.5</MinClientVersion>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)WebDavServer.ruleset</CodeAnalysisRuleSet>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<IsPackable>false</IsPackable>
<NoWarn>NU1701;$(NoWarn)</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="wwwroot\**" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
</PropertyGroup>
<Import Project="../../PackageLibrary.props" />
<ItemGroup>
<PackageReference Include="sqlite-net-pcl" Version="1.4.118" />
<PackageReference Include="sqlite-net-pcl" Version="1.4.118">
<NoWarn>NU1701</NoWarn>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FubarDev.WebDavServer\FubarDev.WebDavServer.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
</PropertyGroup>
<Import Project="../../PackageLibrary.props" />
<ItemGroup>
<PackageReference Include="sqlite-net-pcl" Version="1.4.118" />
<PackageReference Include="sqlite-net-pcl" Version="1.4.118">
<NoWarn>NU1701</NoWarn>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FubarDev.WebDavServer\FubarDev.WebDavServer.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
<Import Project="../../PackageLibrary.props" />
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="2.0.0" />
<PackageReference Include="sqlite-net-pcl" Version="1.4.118" />
<PackageReference Include="sqlite-net-pcl" Version="1.4.118">
<NoWarn>NU1701</NoWarn>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FubarDev.WebDavServer\FubarDev.WebDavServer.csproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<NoWarn>NU1701;$(NoWarn)</NoWarn>
</PropertyGroup>
<Import Project="../../Global.props" />
<ItemGroup>
Expand Down

0 comments on commit a11219e

Please sign in to comment.