Files
cursor-lang/Packaging/Tools/SdkTools.csproj
T
alex 42974ecc8f
Release / release (push) Canceled after 47s
modified release pipeline (#4)
await certificate from ssl.com

Reviewed-on: #4
Co-authored-by: Aleksandr Neychev <alexnejchev73@gmail.com>
2026-08-13 11:17:22 +00:00

28 lines
1.1 KiB
XML

<!--
The project exists for the sake of a single dependency: the package brings
makeappx.exe. That way the MSIX build gets by without an installed Windows SDK
and repeats itself on any machine that has the .NET SDK. The project is not
meant to be built — build-msix.ps1 restores it and takes the program from the
packages folder. It is kept out of the build in CursorLang.sln for the same
reason.
The installer needs nothing from here: WiX arrives with its own project, at
Installer\CursorLang.wixproj.
-->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.6584">
<!-- Only the programs from the package are needed, there are no assemblies to reference -->
<ExcludeAssets>all</ExcludeAssets>
<GeneratePathProperty>true</GeneratePathProperty>
</PackageReference>
</ItemGroup>
</Project>