42 lines
1.8 KiB
XML
42 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0-windows10.0.19041.0</TargetFramework>
|
|
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
|
|
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
<RootNamespace>CursorLang.Settings</RootNamespace>
|
|
<AssemblyName>CursorLang.Settings</AssemblyName>
|
|
<UseWPF>true</UseWPF>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<ApplicationIcon>..\CursorLang.Core\Resources\CursorLang.ico</ApplicationIcon>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
|
|
<SelfContained Condition="'$(RuntimeIdentifier)' != ''">true</SelfContained>
|
|
<PublishTrimmed>false</PublishTrimmed>
|
|
<PublishReadyToRun Condition="'$(RuntimeIdentifier)' == 'win-x64'">true</PublishReadyToRun>
|
|
<Version>1.0.0</Version>
|
|
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
|
<FileVersion>1.0.0.0</FileVersion>
|
|
<Product>CursorLang</Product>
|
|
<Company>Aleksandr Neychev</Company>
|
|
<Description>Settings window of CursorLang</Description>
|
|
<Copyright>Copyright (c) 2026</Copyright>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CursorLang.Core\CursorLang.Core.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2"/>
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.10"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|