41 lines
1.6 KiB
XML
41 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<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.Core</RootNamespace>
|
|
<AssemblyName>CursorLang.Core</AssemblyName>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
|
|
<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>Shared part of CursorLang: models, settings, layout tracking, updates</Description>
|
|
<Copyright>Copyright (c) 2026</Copyright>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<CaretUiAutomation Condition="'$(CaretUiAutomation)' == ''">true</CaretUiAutomation>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(CaretUiAutomation)' == 'true'">
|
|
<DefineConstants>$(DefineConstants);CARET_UI_AUTOMATION</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.WindowsDesktop.App.WPF" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|