Skip to content

Commit ef6bdcd

Browse files
committed
chore: minor csproj cleanups
1 parent 833e9c2 commit ef6bdcd

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
<DebugType>portable</DebugType>
1919
<IsPackable>false</IsPackable>
2020
<IncludeSymbols>true</IncludeSymbols>
21-
<IncludeSource>true</IncludeSource>
2221
<EmbedUntrackedSources>true</EmbedUntrackedSources>
2322
<PackageIconUrl>https://natemcmaster.github.io/CommandLineUtils/logo.png</PackageIconUrl>
2423
<NoPackageAnalysis>true</NoPackageAnalysis>
24+
<WarningsNotAsErrors>$(WarningsNotAsErrors);1591</WarningsNotAsErrors>
2525
<LangVersion>8.0</LangVersion>
2626
<Nullable>enable</Nullable>
2727
<!-- Some previews of .NET Core 3 don't have the rename yet -->
@@ -40,8 +40,8 @@
4040
</PropertyGroup>
4141

4242
<ItemGroup>
43-
<!-- For x-plat develpment. Workaround for https://github.com/dotnet/sdk/issues/335 -->
44-
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-alpha-004" PrivateAssets="all" />
43+
<!-- For x-plat development. Workaround for https://github.com/dotnet/sdk/issues/335 -->
44+
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0-preview.2" PrivateAssets="all" />
4545
</ItemGroup>
4646

4747
</Project>

NuGet.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
<packageSources>
44
<clear />
55
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
6-
<add key="roslyntools" value="https://dotnet.myget.org/F/roslyn-tools/api/v3/index.json" />
76
</packageSources>
87
</configuration>

src/CommandLineUtils/McMaster.Extensions.CommandLineUtils.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
<PropertyGroup>
66
<TargetFrameworks>netstandard2.0;netstandard1.6;net45</TargetFrameworks>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>
8-
<WarningsNotAsErrors>$(WarningsNotAsErrors);1591</WarningsNotAsErrors>
98
<IsPackable>true</IsPackable>
109
<Description>Command-line parsing API.</Description>
1110
<PackageDescription>Command-line parsing API and utilities for console applications.

src/Hosting.CommandLine/McMaster.Extensions.Hosting.CommandLine.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
6-
<WarningsNotAsErrors>$(WarningsNotAsErrors);1591</WarningsNotAsErrors>
76
<IsPackable>true</IsPackable>
87
<Description>Provides command-line parsing API integration with the generic host API (Microsoft.Extensions.Hosting).</Description>
98
<PackageTags>commandline;parsing;hosting</PackageTags>

0 commit comments

Comments
 (0)