-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGamesModder.csproj
More file actions
44 lines (43 loc) · 2.43 KB
/
Copy pathGamesModder.csproj
File metadata and controls
44 lines (43 loc) · 2.43 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<ApplicationManifest>app.manifest</ApplicationManifest>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>
<ItemGroup>
<Content Include="Assets/**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<AvaloniaResource Include="Assets\**" />
<PackageReference Include="Avalonia" Version="11.3.5" />
<PackageReference Include="Avalonia.Desktop" Version="11.3.5" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.5" />
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.5" />
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.5">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
<PackageReference Include="BCnEncoder.Net" Version="2.2.1" />
<PackageReference Include="BCnEncoder.Net.ImageSharp" Version="1.1.2" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="DrSwizzler" Version="1.1.1" />
<PackageReference Include="Hexa.NET.DirectXTex.Standalone" Version="2.0.0" />
<PackageReference Include="HtmlAgilityPack" Version="1.12.3" />
<PackageReference Include="ManagedBass" Version="4.0.2" />
<PackageReference Include="MP3Sharp" Version="1.0.5" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="Pfim" Version="0.11.4" />
<PackageReference Include="PortAudioSharp" Version="0.3.0" />
<PackageReference Include="PuppeteerSharp" Version="20.2.2" />
<PackageReference Include="PVRTexLib.NET" Version="1.0.3" />
<PackageReference Include="ScottPlot" Version="5.0.56" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
<PackageReference Include="Svg" Version="3.4.7" />
<PackageReference Include="TelltaleToolKit" Version="0.1.0" />
</ItemGroup>
</Project>