Skip to content

Commit 3eda252

Browse files
committed
Fix failing test when run in parallel, respect naming convention as set in SerializerSettings for properties in swagger doc
1 parent fa28605 commit 3eda252

File tree

41 files changed

+2813
-606
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+2813
-606
lines changed

.editorconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,13 @@ dotnet_naming_symbols.private_const_fields.required_modifiers = const
102102

103103
dotnet_naming_symbols.private_static_readonly_fields.applicable_kinds = field
104104
dotnet_naming_symbols.private_static_readonly_fields.applicable_accessibilities = private
105-
dotnet_naming_symbols.private_static_readonly_fields.required_modifiers = static,readonly
105+
dotnet_naming_symbols.private_static_readonly_fields.required_modifiers = static, readonly
106106

107107
dotnet_naming_symbols.private_static_or_readonly_fields.applicable_kinds = field
108108
dotnet_naming_symbols.private_static_or_readonly_fields.applicable_accessibilities = private
109109
dotnet_naming_symbols.private_static_or_readonly_fields.required_modifiers = static readonly
110110

111-
dotnet_naming_symbols.locals_and_parameters.applicable_kinds = local,parameter
111+
dotnet_naming_symbols.locals_and_parameters.applicable_kinds = local, parameter
112112
dotnet_naming_symbols.locals_and_parameters.applicable_accessibilities = *
113113

114114
dotnet_naming_symbols.types_and_members.applicable_kinds = *

CSharpGuidelinesAnalyzer.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<cSharpGuidelinesAnalyzerSettings>
3-
<setting rule="AV1561" name="MaxParameterCount" value="6" />
4-
<setting rule="AV1561" name="MaxConstructorParameterCount" value="13" />
3+
<setting rule="AV1561" name="MaxParameterCount" value="6"/>
4+
<setting rule="AV1561" name="MaxConstructorParameterCount" value="13"/>
55
</cSharpGuidelinesAnalyzerSettings>

Directory.Build.props

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
<Project>
2-
<PropertyGroup>
3-
<TargetFrameworkName>net6.0</TargetFrameworkName>
4-
<AspNetVersion>6.0.*</AspNetVersion>
5-
<EFCoreVersion>6.0.*</EFCoreVersion>
6-
<EFCorePostgresVersion>6.0.*</EFCorePostgresVersion>
7-
<MicrosoftCodeAnalysisVersion>4.*</MicrosoftCodeAnalysisVersion>
8-
<HumanizerVersion>2.*</HumanizerVersion>
9-
<SwashbuckleVersion>6.2.*</SwashbuckleVersion>
10-
<JsonApiDotNetCoreVersionPrefix>5.0.0</JsonApiDotNetCoreVersionPrefix>
11-
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)CodingGuidelines.ruleset</CodeAnalysisRuleSet>
12-
<WarningLevel>9999</WarningLevel>
13-
<Nullable>enable</Nullable>
14-
<ImplicitUsings>enable</ImplicitUsings>
15-
<IsPackable>false</IsPackable>
16-
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
17-
</PropertyGroup>
2+
<PropertyGroup>
3+
<TargetFrameworkName>net6.0</TargetFrameworkName>
4+
<AspNetVersion>6.0.*</AspNetVersion>
5+
<EFCoreVersion>6.0.*</EFCoreVersion>
6+
<EFCorePostgresVersion>6.0.*</EFCorePostgresVersion>
7+
<MicrosoftCodeAnalysisVersion>4.*</MicrosoftCodeAnalysisVersion>
8+
<HumanizerVersion>2.*</HumanizerVersion>
9+
<SwashbuckleVersion>6.2.*</SwashbuckleVersion>
10+
<JsonApiDotNetCoreVersionPrefix>5.0.0</JsonApiDotNetCoreVersionPrefix>
11+
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)CodingGuidelines.ruleset</CodeAnalysisRuleSet>
12+
<WarningLevel>9999</WarningLevel>
13+
<Nullable>enable</Nullable>
14+
<ImplicitUsings>enable</ImplicitUsings>
15+
<IsPackable>false</IsPackable>
16+
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
17+
</PropertyGroup>
1818

19-
<ItemGroup>
20-
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" PrivateAssets="All" />
21-
<PackageReference Include="CSharpGuidelinesAnalyzer" Version="3.7.1" PrivateAssets="All" />
22-
<AdditionalFiles Include="$(MSBuildThisFileDirectory)CSharpGuidelinesAnalyzer.config" Visible="False" />
23-
</ItemGroup>
19+
<ItemGroup>
20+
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" PrivateAssets="All"/>
21+
<PackageReference Include="CSharpGuidelinesAnalyzer" Version="3.7.1" PrivateAssets="All"/>
22+
<AdditionalFiles Include="$(MSBuildThisFileDirectory)CSharpGuidelinesAnalyzer.config" Visible="False"/>
23+
</ItemGroup>
2424

25-
<PropertyGroup Condition="'$(Configuration)'=='Release'">
26-
<NoWarn>$(NoWarn);1591</NoWarn>
27-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
28-
<GenerateDocumentationFile>true</GenerateDocumentationFile>
29-
</PropertyGroup>
25+
<PropertyGroup Condition="'$(Configuration)'=='Release'">
26+
<NoWarn>$(NoWarn);1591</NoWarn>
27+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
28+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
29+
</PropertyGroup>
3030

31-
<!-- Test Project Dependencies -->
32-
<PropertyGroup>
33-
<CoverletVersion>3.1.0</CoverletVersion>
34-
<MoqVersion>4.16.1</MoqVersion>
35-
<TestSdkVersion>17.0.0</TestSdkVersion>
36-
</PropertyGroup>
31+
<!-- Test Project Dependencies -->
32+
<PropertyGroup>
33+
<CoverletVersion>3.1.0</CoverletVersion>
34+
<MoqVersion>4.16.1</MoqVersion>
35+
<TestSdkVersion>17.0.0</TestSdkVersion>
36+
</PropertyGroup>
3737
</Project>

benchmarks/Benchmarks.csproj

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<OutputType>Exe</OutputType>
4-
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
5-
</PropertyGroup>
2+
<PropertyGroup>
3+
<OutputType>Exe</OutputType>
4+
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
5+
</PropertyGroup>
66

7-
<ItemGroup>
8-
<ProjectReference Include="..\src\JsonApiDotNetCore\JsonApiDotNetCore.csproj" />
9-
</ItemGroup>
7+
<ItemGroup>
8+
<ProjectReference Include="..\src\JsonApiDotNetCore\JsonApiDotNetCore.csproj"/>
9+
</ItemGroup>
1010

11-
<ItemGroup>
12-
<PackageReference Include="BenchmarkDotNet" Version="0.13.1" />
13-
<PackageReference Include="Moq" Version="$(MoqVersion)" />
14-
</ItemGroup>
11+
<ItemGroup>
12+
<PackageReference Include="BenchmarkDotNet" Version="0.13.1"/>
13+
<PackageReference Include="Moq" Version="$(MoqVersion)"/>
14+
</ItemGroup>
1515
</Project>
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
2-
<PropertyGroup>
3-
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4-
</PropertyGroup>
2+
<PropertyGroup>
3+
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4+
</PropertyGroup>
55

6-
<ItemGroup>
7-
<ProjectReference Include="..\..\JsonApiDotNetCore\JsonApiDotNetCore.csproj" />
8-
<ProjectReference Include="..\..\JsonApiDotNetCore.SourceGenerators\JsonApiDotNetCore.SourceGenerators.csproj" OutputItemType="Analyzer"
9-
ReferenceOutputAssembly="false" />
10-
</ItemGroup>
6+
<ItemGroup>
7+
<ProjectReference Include="..\..\JsonApiDotNetCore\JsonApiDotNetCore.csproj"/>
8+
<ProjectReference Include="..\..\JsonApiDotNetCore.SourceGenerators\JsonApiDotNetCore.SourceGenerators.csproj" OutputItemType="Analyzer"
9+
ReferenceOutputAssembly="false"/>
10+
</ItemGroup>
1111

12-
<ItemGroup>
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="$(EFCoreVersion)" />
14-
</ItemGroup>
12+
<ItemGroup>
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="$(EFCoreVersion)"/>
14+
</ItemGroup>
1515
</Project>
Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
2-
<PropertyGroup>
3-
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4-
</PropertyGroup>
2+
<PropertyGroup>
3+
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4+
</PropertyGroup>
55

6-
<ItemGroup>
7-
<ProjectReference Include="..\..\JsonApiDotNetCore\JsonApiDotNetCore.csproj" />
8-
<ProjectReference Include="..\..\JsonApiDotNetCore.SourceGenerators\JsonApiDotNetCore.SourceGenerators.csproj" OutputItemType="Analyzer"
9-
ReferenceOutputAssembly="false" />
10-
<ProjectReference Include="..\..\JsonApiDotNetCore.OpenApi\JsonApiDotNetCore.OpenApi.csproj" />
11-
</ItemGroup>
6+
<ItemGroup>
7+
<ProjectReference Include="..\..\JsonApiDotNetCore\JsonApiDotNetCore.csproj"/>
8+
<ProjectReference Include="..\..\JsonApiDotNetCore.SourceGenerators\JsonApiDotNetCore.SourceGenerators.csproj" OutputItemType="Analyzer"
9+
ReferenceOutputAssembly="false"/>
10+
<ProjectReference Include="..\..\JsonApiDotNetCore.OpenApi\JsonApiDotNetCore.OpenApi.csproj"/>
11+
</ItemGroup>
1212

13-
<ItemGroup>
14-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="$(EFCoreVersion)" />
15-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="$(EFCorePostgresVersion)" />
16-
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="$(SwashbuckleVersion)" />
17-
</ItemGroup>
13+
<ItemGroup>
14+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="$(EFCoreVersion)"/>
15+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="$(EFCorePostgresVersion)"/>
16+
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="$(SwashbuckleVersion)"/>
17+
</ItemGroup>
1818
</Project>
Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4-
<OutputType>Exe</OutputType>
5-
</PropertyGroup>
2+
<PropertyGroup>
3+
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4+
<OutputType>Exe</OutputType>
5+
</PropertyGroup>
66

7-
<ItemGroup>
8-
<ProjectReference Include="..\..\JsonApiDotNetCore.OpenApi.Client\JsonApiDotNetCore.OpenApi.Client.csproj" />
9-
</ItemGroup>
7+
<ItemGroup>
8+
<ProjectReference Include="..\..\JsonApiDotNetCore.OpenApi.Client\JsonApiDotNetCore.OpenApi.Client.csproj"/>
9+
</ItemGroup>
1010

11-
<ItemGroup>
12-
<PackageReference Include="Microsoft.Extensions.ApiDescription.Client" Version="5.0.10">
13-
<PrivateAssets>all</PrivateAssets>
14-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
15-
</PackageReference>
16-
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
17-
<PackageReference Include="NSwag.ApiDescription.Client" Version="13.13.2">
18-
<PrivateAssets>all</PrivateAssets>
19-
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
20-
</PackageReference>
21-
</ItemGroup>
11+
<ItemGroup>
12+
<PackageReference Include="Microsoft.Extensions.ApiDescription.Client" Version="5.0.10">
13+
<PrivateAssets>all</PrivateAssets>
14+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
15+
</PackageReference>
16+
<PackageReference Include="Newtonsoft.Json" Version="13.0.1"/>
17+
<PackageReference Include="NSwag.ApiDescription.Client" Version="13.13.2">
18+
<PrivateAssets>all</PrivateAssets>
19+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
20+
</PackageReference>
21+
</ItemGroup>
2222

23-
<ItemGroup>
24-
<OpenApiReference Include="OpenAPIs\swagger.json" CodeGenerator="NSwagCSharp" ClassName="ExampleApiClient">
25-
<SourceUri>http://localhost:14140/swagger/v1/swagger.json</SourceUri>
26-
</OpenApiReference>
27-
</ItemGroup>
23+
<ItemGroup>
24+
<OpenApiReference Include="OpenAPIs\swagger.json" CodeGenerator="NSwagCSharp" ClassName="ExampleApiClient">
25+
<SourceUri>http://localhost:14140/swagger/v1/swagger.json</SourceUri>
26+
</OpenApiReference>
27+
</ItemGroup>
2828
</Project>
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
2-
<PropertyGroup>
3-
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4-
</PropertyGroup>
2+
<PropertyGroup>
3+
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4+
</PropertyGroup>
55

6-
<ItemGroup>
7-
<ProjectReference Include="..\..\JsonApiDotNetCore\JsonApiDotNetCore.csproj" />
8-
<ProjectReference Include="..\..\JsonApiDotNetCore.SourceGenerators\JsonApiDotNetCore.SourceGenerators.csproj" OutputItemType="Analyzer"
9-
ReferenceOutputAssembly="false" />
10-
</ItemGroup>
6+
<ItemGroup>
7+
<ProjectReference Include="..\..\JsonApiDotNetCore\JsonApiDotNetCore.csproj"/>
8+
<ProjectReference Include="..\..\JsonApiDotNetCore.SourceGenerators\JsonApiDotNetCore.SourceGenerators.csproj" OutputItemType="Analyzer"
9+
ReferenceOutputAssembly="false"/>
10+
</ItemGroup>
1111

12-
<ItemGroup>
13-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="$(EFCoreVersion)" />
14-
</ItemGroup>
12+
<ItemGroup>
13+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="$(EFCoreVersion)"/>
14+
</ItemGroup>
1515
</Project>
Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
2-
<PropertyGroup>
3-
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4-
</PropertyGroup>
2+
<PropertyGroup>
3+
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4+
</PropertyGroup>
55

6-
<ItemGroup>
7-
<ProjectReference Include="..\..\JsonApiDotNetCore\JsonApiDotNetCore.csproj" />
8-
<ProjectReference Include="..\..\JsonApiDotNetCore.SourceGenerators\JsonApiDotNetCore.SourceGenerators.csproj" OutputItemType="Analyzer"
9-
ReferenceOutputAssembly="false" />
10-
</ItemGroup>
6+
<ItemGroup>
7+
<ProjectReference Include="..\..\JsonApiDotNetCore\JsonApiDotNetCore.csproj"/>
8+
<ProjectReference Include="..\..\JsonApiDotNetCore.SourceGenerators\JsonApiDotNetCore.SourceGenerators.csproj" OutputItemType="Analyzer"
9+
ReferenceOutputAssembly="false"/>
10+
</ItemGroup>
1111

12-
<ItemGroup>
13-
<PackageReference Include="Dapper" Version="2.0.123" />
14-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="$(EFCoreVersion)" />
15-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="$(EFCorePostgresVersion)" />
16-
</ItemGroup>
12+
<ItemGroup>
13+
<PackageReference Include="Dapper" Version="2.0.123"/>
14+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="$(EFCoreVersion)"/>
15+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="$(EFCorePostgresVersion)"/>
16+
</ItemGroup>
1717
</Project>
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
2-
<PropertyGroup>
3-
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4-
</PropertyGroup>
2+
<PropertyGroup>
3+
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4+
</PropertyGroup>
55

6-
<ItemGroup>
7-
<ProjectReference Include="..\..\JsonApiDotNetCore\JsonApiDotNetCore.csproj" />
8-
<ProjectReference Include="..\..\JsonApiDotNetCore.SourceGenerators\JsonApiDotNetCore.SourceGenerators.csproj" OutputItemType="Analyzer"
9-
ReferenceOutputAssembly="false" />
10-
</ItemGroup>
6+
<ItemGroup>
7+
<ProjectReference Include="..\..\JsonApiDotNetCore\JsonApiDotNetCore.csproj"/>
8+
<ProjectReference Include="..\..\JsonApiDotNetCore.SourceGenerators\JsonApiDotNetCore.SourceGenerators.csproj" OutputItemType="Analyzer"
9+
ReferenceOutputAssembly="false"/>
10+
</ItemGroup>
1111

12-
<ItemGroup>
13-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="$(EFCoreVersion)" />
14-
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="$(EFCorePostgresVersion)" />
15-
</ItemGroup>
12+
<ItemGroup>
13+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="$(EFCoreVersion)"/>
14+
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="$(EFCorePostgresVersion)"/>
15+
</ItemGroup>
1616
</Project>
Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4-
<IsPackable>true</IsPackable>
5-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
6-
<RootNamespace>JsonApiDotNetCore</RootNamespace>
7-
</PropertyGroup>
2+
<PropertyGroup>
3+
<TargetFramework>$(TargetFrameworkName)</TargetFramework>
4+
<IsPackable>true</IsPackable>
5+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
6+
<RootNamespace>JsonApiDotNetCore</RootNamespace>
7+
</PropertyGroup>
88

9-
<PropertyGroup>
10-
<VersionPrefix>$(JsonApiDotNetCoreVersionPrefix)</VersionPrefix>
11-
<PackageTags>jsonapidotnetcore;jsonapi;json:api;dotnet;asp.net;rest;web-api</PackageTags>
12-
<Description>Annotations for JsonApiDotNetCore, a framework for building JSON:API compliant REST APIs using ASP.NET and Entity Framework Core.</Description>
13-
<Authors>json-api-dotnet</Authors>
14-
<PackageProjectUrl>https://www.jsonapi.net/</PackageProjectUrl>
15-
<PackageLicenseExpression>MIT</PackageLicenseExpression>
16-
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
17-
<PackageReleaseNotes>See https://github.com/json-api-dotnet/JsonApiDotNetCore/releases.</PackageReleaseNotes>
18-
<PackageIcon>logo.png</PackageIcon>
19-
<PublishRepositoryUrl>true</PublishRepositoryUrl>
20-
<EmbedUntrackedSources>true</EmbedUntrackedSources>
21-
<DebugType>embedded</DebugType>
22-
</PropertyGroup>
9+
<PropertyGroup>
10+
<VersionPrefix>$(JsonApiDotNetCoreVersionPrefix)</VersionPrefix>
11+
<PackageTags>jsonapidotnetcore;jsonapi;json:api;dotnet;asp.net;rest;web-api</PackageTags>
12+
<Description>Annotations for JsonApiDotNetCore, a framework for building JSON:API compliant REST APIs using ASP.NET and Entity Framework Core.</Description>
13+
<Authors>json-api-dotnet</Authors>
14+
<PackageProjectUrl>https://www.jsonapi.net/</PackageProjectUrl>
15+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
16+
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
17+
<PackageReleaseNotes>See https://github.com/json-api-dotnet/JsonApiDotNetCore/releases.</PackageReleaseNotes>
18+
<PackageIcon>logo.png</PackageIcon>
19+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
20+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
21+
<DebugType>embedded</DebugType>
22+
</PropertyGroup>
2323

24-
<ItemGroup>
25-
<None Include="..\..\logo.png" Visible="false">
26-
<Pack>True</Pack>
27-
<PackagePath></PackagePath>
28-
</None>
29-
</ItemGroup>
24+
<ItemGroup>
25+
<None Include="..\..\logo.png" Visible="false">
26+
<Pack>True</Pack>
27+
<PackagePath></PackagePath>
28+
</None>
29+
</ItemGroup>
3030
</Project>

0 commit comments

Comments
 (0)