Skip to content

Commit 2918341

Browse files
Bug Fix: Nuget package contents (#119)
* Fixed a bug where some code files were included in the nuget package as content files for the main library
1 parent 4f7b9f9 commit 2918341

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

src/ancillary-projects/starwars/starwars-common/starwars-common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net6.0;net7.0;</TargetFrameworks>
4+
<TargetFrameworks>net7.0;net6.0;netstandard2.0;</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<NoWarn>$(NoWarn);1701;1702;1705;1591;NU1603</NoWarn>
77
<RootNamespace>GraphQL.AspNet.StarwarsAPI.Common</RootNamespace>

src/graphql-aspnet/graphql-aspnet.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@
1212
<None Include="..\..\build\nuget-package-readme.md" Pack="true" PackagePath="\README.md" />
1313
</ItemGroup>
1414

15-
<ItemGroup>
16-
<Content Include="ServerExtensions/MultipartRequests/**/*.*" />
17-
<Content Include="Common/JsonNodes/**/*.*" />
18-
</ItemGroup>
1915

2016
<!-- netstandard 2.0 -->
2117
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">

src/library-common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- Common property settings for 1st-party production libraries -->
22
<Project>
33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net7.0;net6.0;netstandard2.0;</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<NoWarn>$(NoWarn);1701;1702;1705;1591;NU1603;IDE0019;IDE0017;RCS1146;RCS1194;</NoWarn>
77

src/unit-tests/graphql-aspnet-tests-thirdpartydll/graphql-aspnet-tests-thirdpartydll.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netstandard2.0;</TargetFrameworks>
4+
<TargetFrameworks>net7.0;net6.0;</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<NoWarn>$(NoWarn);1701;1702;1705;1591;NU1603;IDE0060;IDE0052;IDE0044;IDE0059;IDE0052</NoWarn>
77
<RootNamespace>GraphQL.AspNet.Tests.ThirdPartyDll</RootNamespace>

0 commit comments

Comments
 (0)