-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenal_soft_bindings.csproj
More file actions
45 lines (42 loc) · 1.74 KB
/
openal_soft_bindings.csproj
File metadata and controls
45 lines (42 loc) · 1.74 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>OpenAL</RootNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>OpenAL Soft Bindings</Title>
<Company>Vercidium Pty Ltd</Company>
<Description>Modern, high-performance C# bindings for OpenAL Soft, with managed wrappers for ease of use.</Description>
<Copyright>Copyright © 2026 Vercidium</Copyright>
<PackageProjectUrl>https://github.com/vercidium-patreon/openal_soft_bindings</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/vercidium-patreon/openal_soft_bindings</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>openal;openal-soft;openal_soft;</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<DefaultItemExcludes>$(DefaultItemExcludes);test/**</DefaultItemExcludes>
</PropertyGroup>
<PropertyGroup>
<Version>1.0.8</Version>
<PackageReleaseNotes>The correct OpenAL soft binary (libopenal.so.1) is now used on Linux.</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<Compile Remove="linux_test\**" />
<EmbeddedResource Remove="linux_test\**" />
<None Remove="linux_test\**" />
</ItemGroup>
<ItemGroup>
<None Update="LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="CHANGELOG.md">
<PackagePath>\</PackagePath>
<Pack>True</Pack>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>