Release / release (push) Canceled after 47s
await certificate from ssl.com Reviewed-on: #4 Co-authored-by: Aleksandr Neychev <alexnejchev73@gmail.com>
28 lines
1.1 KiB
XML
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>
|