1234567891011121314151617181920212223242526272829303132333435363738 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net9.0-windows10.0.26100.0</TargetFramework>
- <Nullable>enable</Nullable>
- <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
- <Platforms>x64</Platforms>
- <RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
- <UseWinUI>true</UseWinUI>
- <WindowsPackaging>None</WindowsPackaging>
- <EnableMsixTooling>true</EnableMsixTooling>
- <Configurations>Debug;Release;DebugDev</Configurations>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
- <OutputPath>bin\x64\Debug\</OutputPath>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)' == 'DebugDev' ">
- <OutputPath>bin\x64\DebugDev\</OutputPath>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Avalonia.Desktop" Version="11.2.2" />
- <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\inabox\InABox.Avalonia.Platform.Desktop\InABox.Avalonia.Platform.Desktop.csproj" />
- <ProjectReference Include="..\..\..\inabox\InABox.Avalonia\InABox.Avalonia.csproj" />
- <ProjectReference Include="..\PRS.Avalonia\PRS.Avalonia.csproj" />
- </ItemGroup>
-
- </Project>
|