55 lines
2.2 KiB
XML
55 lines
2.2 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.Agent</RootNamespace>
|
|
<AssemblyName>CursorLang</AssemblyName>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<ApplicationIcon>..\CursorLang.Core\Resources\CursorLang.ico</ApplicationIcon>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
|
|
<SelfContained Condition="'$(RuntimeIdentifier)' != ''">true</SelfContained>
|
|
<PublishTrimmed>false</PublishTrimmed>
|
|
<PublishReadyToRun Condition="'$(RuntimeIdentifier)' != ''">true</PublishReadyToRun>
|
|
<Version>1.0.0</Version>
|
|
<AssemblyVersion>$(Version)</AssemblyVersion>
|
|
<FileVersion>$(Version)</FileVersion>
|
|
<Product>CursorLang</Product>
|
|
<Company>Aleksandr Neichev</Company>
|
|
<Description>Shows the keyboard layout at the cursor</Description>
|
|
<Copyright>Copyright (c) 2026</Copyright>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CursorLang.Core\CursorLang.Core.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CursorLang.Settings\CursorLang.Settings.csproj"
|
|
ReferenceOutputAssembly="false"
|
|
Private="false"/>
|
|
</ItemGroup>
|
|
|
|
<Target Name="PlaceTheSettingsWindowBesideTheAgent" AfterTargets="Build">
|
|
<ItemGroup>
|
|
<SettingsOutput Include="..\CursorLang.Settings\bin\$(Configuration)\$(TargetFramework)\**\*"/>
|
|
</ItemGroup>
|
|
|
|
<Copy SourceFiles="@(SettingsOutput)"
|
|
DestinationFolder="$(OutDir)%(RecursiveDir)"
|
|
SkipUnchangedFiles="true"/>
|
|
</Target>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="CursorLang.Agent.Tests"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|