-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfsb5_split.csproj
More file actions
34 lines (34 loc) · 1.73 KB
/
fsb5_split.csproj
File metadata and controls
34 lines (34 loc) · 1.73 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Description>A tool to split a multi-stream FSB5 into multiple single-stream FSB5s.</Description>
<Authors>Naram Qashat</Authors>
<Copyright>© 2015-2021 Naram Qashat</Copyright>
<PackageProjectUrl></PackageProjectUrl>
<RepositoryUrl>https://github.com/CyberBotX/fsb5_split</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Configurations>Debug;Release;Debug with FMOD;Release with FMOD</Configurations>
<Platforms>x86</Platforms>
<Version>1.1.0</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug with FMOD|x86'">
<DefineConstants>TRACE;DEBUG;FMOD</DefineConstants>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release with FMOD|x86'">
<DefineConstants>TRACE;FMOD</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup Condition="$(DefineConstants.Contains('FMOD'))">
<Compile Include="C:\Program Files (x86)\FMOD SoundSystem\FMOD Studio API Windows\api\lowlevel\inc\fmod.cs" Link="fmod.cs" />
<Compile Include="C:\Program Files (x86)\FMOD SoundSystem\FMOD Studio API Windows\api\lowlevel\inc\fmod_dsp.cs" Link="fmod_dsp.cs" />
<None Include="C:\Program Files %28x86%29\FMOD SoundSystem\FMOD Studio API Windows\api\lowlevel\lib\fmod.dll" Link="fmod.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>