-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathAetherphone.csproj
More file actions
91 lines (84 loc) · 3.82 KB
/
Copy pathAetherphone.csproj
File metadata and controls
91 lines (84 loc) · 3.82 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Dalamud.NET.Sdk/15.0.0">
<PropertyGroup>
<LangVersion>preview</LangVersion>
<IsPackable>false</IsPackable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
<DalamudLibPath>$(DALAMUD_HOME)/</DalamudLibPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<TargetName>AetherphoneDev</TargetName>
<ProjectDepsFileName>AetherphoneDev.deps.json</ProjectDepsFileName>
</PropertyGroup>
<ItemGroup>
<Content Include="Words\*.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Hunts\*.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Images\Icon.png" Condition="Exists('Images\Icon.png')">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Fonts\*.ttf;Fonts\Inter-OFL.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Icons\*.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Cases\*.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Emoji\*.png;Emoji\catalog.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="..\..\THIRD-PARTY-NOTICES.md" Link="THIRD-PARTY-NOTICES.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Localization\*.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Wallpapers\*.png;Wallpapers\*.jpg;Wallpapers\*.jpeg;Wallpapers\*.bmp">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Sounds\**\*.mp3;Sounds\**\*.wav">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Aetherphone.Tests" />
</ItemGroup>
<ItemGroup>
<Using Remove="System.Linq" />
<Using Include="System" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Numerics" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Concentus" Version="2.2.2" />
<PackageReference Include="BouncyCastle.Cryptography" Version="2.7.0" />
<PackageReference Include="NEbml" Version="1.1.0.5" />
<PackageReference Include="NAudio.WinMM" Version="2.3.0" />
<PackageReference Include="NLayer.NAudioSupport" Version="2.0.1" />
<PackageReference Include="NAudio.Wasapi" Version="2.3.0" />
<PackageReference Include="MeltySynth" Version="2.4.1" />
<PackageReference Include="NetStone" Version="1.4.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4">
<ExcludeAssets>runtime</ExcludeAssets>
</PackageReference>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="10.0.11" />
<PackageReference Include="Vortice.Direct3D11" Version="3.8.3" />
<PackageReference Include="Vortice.D3DCompiler" Version="3.8.3" />
<PackageReference Include="YoutubeExplode" Version="6.6.1" />
<PackageReference Include="SharpDX.Direct3D11" Version="4.2.0" />
<PackageReference Include="SharpDX.D3DCompiler" Version="4.2.0" />
<PackageReference Include="SharpCompress" Version="0.48.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ManagedDoom\ManagedDoom.csproj" />
</ItemGroup>
</Project>