forked from flibitijibibo/OpenAL-CS
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathOpenAL-CS.csproj
More file actions
30 lines (30 loc) · 1.21 KB
/
OpenAL-CS.csproj
File metadata and controls
30 lines (30 loc) · 1.21 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Optimize>true</Optimize>
<AssemblyName>OpenAL-CS</AssemblyName>
<RootNamespace>OpenAL</RootNamespace>
<DebugSymbols>true</DebugSymbols>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<PlatformTarget>AnyCPU</PlatformTarget>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<Configurations>Release;Debug;</Configurations>
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
<OutputPath>./bin</OutputPath>
</PropertyGroup>
<ItemGroup>
<!-- Work around an issue where Rider does not detect files in the project root using the default glob -->
<Compile Include="**/*.cs" Exclude="$(DefaultItemExcludes)" />
</ItemGroup>
<ItemGroup>
<None Update="OpenAL-CS.dll.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
<Optimize>false</Optimize>
</PropertyGroup>
</Project>