summaryrefslogtreecommitdiff
path: root/JVDesktop/JVDesktop.csproj
blob: 67d341c1ce6d2e9343a8095235b9ce3eeb52c2db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
    <PropertyGroup>
        <OutputType>WinExe</OutputType>
        <TargetFramework>net8.0</TargetFramework>
        <Nullable>enable</Nullable>
        <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
        <ApplicationManifest>app.manifest</ApplicationManifest>
        <AvaloniaUseCompiledBindingsByDefault
        >true</AvaloniaUseCompiledBindingsByDefault>
        <BaseOutputPath>..\.Temp\Debug\</BaseOutputPath>
        <OutputPath>..\.Temp\Debug\</OutputPath>
        <AppendTargetFrameworkToOutputPath
        >false</AppendTargetFrameworkToOutputPath>
        <AppendRuntimeIdentifierToOutputPath
        >false</AppendRuntimeIdentifierToOutputPath>
    </PropertyGroup>

    <ItemGroup>
        <Folder Include="Models\" />
        <AvaloniaResource Include="Assets\**" />
    </ItemGroup>

    <ItemGroup>
        <PackageReference Include="Avalonia" Version="11.3.4" />
        <PackageReference Include="Avalonia.Desktop" Version="11.3.4" />
        <PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.4" />
        <PackageReference Include="Avalonia.Diagnostics" Version="11.3.4">
            <IncludeAssets
                Condition="'$(Configuration)' != 'Debug'"
            >None</IncludeAssets>
            <PrivateAssets
                Condition="'$(Configuration)' != 'Debug'"
            >All</PrivateAssets>
        </PackageReference>
        <PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.1" />
        <PackageReference Include="ReactiveUI" Version="22.3.1" />
    </ItemGroup>

    <ItemGroup>
      <ProjectReference
            Include="..\CommandLineWrapper\CommandLineWrapper.csproj"
        />
    </ItemGroup>
</Project>