2024-08-07 18:48:13 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2026-04-10 00:54:43 -05:00
|
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
2024-08-07 18:48:13 -05:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2024-09-12 19:09:13 -05:00
|
|
|
|
<PropertyGroup Condition="$(TargetFramework.Contains('-windows'))">
|
|
|
|
|
|
<DefineConstants>WINDOWS</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="$(TargetFramework.Contains('-linux'))">
|
|
|
|
|
|
<DefineConstants>LINUX</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="$(TargetFramework.Contains('-mac'))">
|
|
|
|
|
|
<DefineConstants>MAC</DefineConstants>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2024-08-07 18:48:13 -05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\LANCommander.Launcher.Data\LANCommander.Launcher.Data.csproj" />
|
2025-11-23 20:53:45 -06:00
|
|
|
|
<ProjectReference Include="..\LANCommander.Launcher.Settings\LANCommander.Launcher.Settings.csproj" />
|
2024-08-07 18:48:13 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|