-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCompressonator.NET.csproj
63 lines (56 loc) · 2.4 KB
/
Compressonator.NET.csproj
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Company>Yellow Dog Man Studios</Company>
<Authors>Yellow Dog Man Studios</Authors>
<PackageId>YellowDogMan.Compressonator.NET</PackageId>
<Description>.NET wrapper for the Compressonator library/framework by AMD, using P/Invoke</Description>
<Copyright>Copyright (c) Yellow Dog Man Studios s.r.o. 2023</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<RepositoryUrl>https://github.com/Yellow-Dog-Man/Compressonator.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectURL>https://yellowdogman.com/</PackageProjectURL>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>compressonator</PackageTags>
<PackageReleaseNotes>Initial release</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<None Include="Images\icon.png" Pack="true" PackagePath="\"/>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<None Update="CMP_Framework_MDd_DLL.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="CMP_Framework_MD_DLL.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="CMP_Framework_MTd_DLL.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="CMP_Framework_MT_DLL.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Compressonator_MDd_DLL.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Compressonator_MD_DLL.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Compressonator_MTd_DLL.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Compressonator_MT_DLL.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>