mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<Platforms>x64</Platforms>
|
|
<OutputPath>bin</OutputPath>
|
|
<AssemblyTitle>Artemis</AssemblyTitle>
|
|
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
|
|
<AppendTargetFrameworkToOutputPath>False</AppendTargetFrameworkToOutputPath>
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<AvaloniaResource Include="Assets\**" />
|
|
<None Remove=".gitignore" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Artemis.Core\Artemis.Core.csproj" />
|
|
<ProjectReference Include="..\Artemis.UI\Artemis.UI.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="Icons/**" CopyToOutputDirectory="PreserveNewest" />
|
|
<Content Include="Scripts/**" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
</Project> |