30 lines
904 B
XML
30 lines
904 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<RootNamespace>Notes</RootNamespace>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Avalonia.Desktop" Version="11.0.5" />
|
|||
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.0.5" />
|
|||
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" />
|
|||
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.0.5" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Update="App.axaml.cs">
|
|||
|
<DependentUpon>App.axaml</DependentUpon>
|
|||
|
<SubType>Code</SubType>
|
|||
|
</Compile>
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\Utils\Utils.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|