-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
flp2midi.csproj
44 lines (36 loc) · 1.49 KB
/
flp2midi.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<Platforms>AnyCPU;x64</Platforms>
<RuntimeIdentifiers>win-x64;win-x86;win-arm;linux-arm;linux-x64;osx-x64</RuntimeIdentifiers>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>bin\Any\Release\</OutputPath>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>bin\Any\Debug\</OutputPath>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Remove="builds\**" />
<Compile Remove="external\**" />
<EmbeddedResource Remove="builds\**" />
<EmbeddedResource Remove="external\**" />
<None Remove="builds\**" />
<None Remove="external\**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="external\FLParser\Monad.FLParser.csproj" />
<ProjectReference Include="external\MIDIModificationFramework\MIDIModificationFramework.csproj" />
</ItemGroup>
</Project>