-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZstd.NetFramework.csproj
More file actions
49 lines (48 loc) · 2.49 KB
/
Zstd.NetFramework.csproj
File metadata and controls
49 lines (48 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<LangVersion>preview</LangVersion>
<TargetFrameworks>net462;net47;net471;net472;net48;net481;net8.0;net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>Zstd.NetFramework</PackageId>
<PackageVersion>2.0.9</PackageVersion>
<Version>2.0.9</Version>
<Authors>lalaki</Authors>
<Company>lalaki</Company>
<Description>A NuGet package for C# that wraps libzstd.dll for compression and decompression using Zstandard.</Description>
<PackageReleaseNotes>v2.0.7 Zstd.NetFramework - release.</PackageReleaseNotes>
<Copyright>Copyright (C) 2025 lalaki.cn</Copyright>
<Product>Zstd.NetFramework</Product>
<PackageIcon>zstd_logo86.png</PackageIcon>
<RepositoryUrl>https://github.com/lalakii/Zstd.NetFramework</RepositoryUrl>
<PackageProjectUrl>https://github.com/lalakii/Zstd.NetFramework</PackageProjectUrl>
<PackageTags>zstd libzstd pinvoke windows decompress compress</PackageTags>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<NoWarn>SYSLIB1054;IDE0130;SA1200;SA1600;SA1633;SA0001;CA1724;</NoWarn>
<DebugType>none</DebugType>
<NoWin32Manifest>true</NoWin32Manifest>
<RunPostBuildEvent>OnOutputUpdated</RunPostBuildEvent>
<AnalysisLevel>latest-all</AnalysisLevel>
<OutputType>Library</OutputType>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<Compile Remove="nupkgs\**" />
<EmbeddedResource Remove="nupkgs\**" />
<None Remove="nupkgs\**" />
<None Include="LICENSE" Pack="true" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="zstd_logo86.png" Pack="true" PackagePath="" />
<None Include="Zstd.NetFramework.targets" Pack="true" PackagePath="build" />
<None Include="zstd-v1.5.7-release\**" Pack="true" PackagePath="runtimes\zstd-v1.5.7-release" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="lalaki_sign "$(TargetPath)">NUL 2>&1 &" />
</Target>
</Project>