Skip to content
Snippets Groups Projects
Select Git revision
13 results Searching

Blacklight.Desktop.csproj

Blame
  • Blacklight.Desktop.csproj 881 B
    <Project Sdk="Microsoft.NET.Sdk">
    
        <PropertyGroup>
            <OutputType>WinExe</OutputType>
            <TargetFramework>net9.0</TargetFramework>
            <ImplicitUsings>enable</ImplicitUsings>
            <Nullable>enable</Nullable>
            <AssemblyName>BlacklightDesktop</AssemblyName>
        </PropertyGroup>
    
        <PropertyGroup>
            <ApplicationManifest>app.manifest</ApplicationManifest>
        </PropertyGroup>
    
        <ItemGroup>
            <PackageReference Include="Avalonia.Desktop" Version="11.2.5" />
            <!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
            <PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.2.5" />
        </ItemGroup>
    
        <ItemGroup>
            <ProjectReference Include="..\Blacklight\Blacklight.csproj" />
        </ItemGroup>
    
    </Project>