Files
crysome/Crysome.Server/Crysome.Server.csproj
T
2026-08-27 11:22:54 -06:00

55 lines
2.7 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0-windows</TargetFramework>
<OutputType>WinExe</OutputType>
<UseWPF>true</UseWPF>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<OutputPath>..\CRYSOME_COMPILED\</OutputPath>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<ApplicationIcon>app.ico</ApplicationIcon>
<EnableDefaultPageItems>false</EnableDefaultPageItems>
<EnableDefaultApplicationDefinition>false</EnableDefaultApplicationDefinition>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Crysome.Common\Crysome.Common.csproj" />
<ProjectReference Include="..\Crysome.Server.Core\Crysome.Server.Core.csproj" />
<ProjectReference Include="..\Crysome.Obfuscator\Crysome.Obfuscator.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NAudio" Version="2.2.1" />
<PackageReference Include="Vestris.ResourceLib" Version="2.2.0" />
<Reference Include="Wpf.Ui">
<HintPath>lib\Wpf.Ui.dll</HintPath>
<Private>true</Private>
</Reference>
<Reference Include="Wpf.Ui.Abstractions">
<HintPath>lib\Wpf.Ui.Abstractions.dll</HintPath>
<Private>true</Private>
</Reference>
<PackageReference Include="dnlib" Version="4.5.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="System.Drawing.Common" Version="9.0.0" />
<PackageReference Include="Costura.Fody" Version="5.7.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Fody" Version="6.8.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Crysome.Server.g.resources" LogicalName="crysome.server.g.resources" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Crysome.Server.Resources.Strings.resx" ManifestResourceName="Crysome.Server.Resources.Strings" />
</ItemGroup>
<ItemGroup>
<Content Include="abe_decrypt.dll" CopyToOutputDirectory="PreserveNewest" Link="abe_decrypt.dll" />
<EmbeddedResource Include="abe_decrypt.dll" LogicalName="abe_decrypt.dll" />
<Content Include="flags\**\*" CopyToOutputDirectory="PreserveNewest" Link="flags\%(RecursiveDir)%(Filename)%(Extension)" />
<Content Include="icons\**\*" CopyToOutputDirectory="PreserveNewest" Link="icons\%(RecursiveDir)%(Filename)%(Extension)" />
<Content Include="inventory\**\*" CopyToOutputDirectory="PreserveNewest" Link="inventory\%(RecursiveDir)%(Filename)%(Extension)" Condition="Exists('inventory')" />
</ItemGroup>
</Project>