Skip to content

Commit

Permalink
Fix nuget package errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Banane9 committed Nov 11, 2024
1 parent db153a1 commit c5920e0
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion Generex/Generex.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>

<LangVersion>latestMajor</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>

<ImplicitUsings>disable</ImplicitUsings>
<DebugType>portable</DebugType>

<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -25,6 +30,21 @@
<None Include="../README.md" Pack="true" PackagePath="" />
</ItemGroup>

<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
<IncludeSymbols>True</IncludeSymbols>
<EmbedAllSources>True</EmbedAllSources>
<EmbedUntrackedSources>True</EmbedUntrackedSources>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>

<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EnumerableToolkit" Version="1.3.1" />
<PackageReference Include="PolySharp" Version="1.13.1">
Expand Down

0 comments on commit c5920e0

Please sign in to comment.