2024-05-02 15:12:49 -05:00
|
|
|
|
<Project Sdk="Microsoft.Build.NoTargets/2.0.1">
|
2020-07-20 15:48:12 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2020-10-23 09:25:16 +02:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2020-07-20 15:48:12 +02:00
|
|
|
|
|
|
|
|
|
<Description>MSBuild .NET Sdk for Godot projects.</Description>
|
|
|
|
|
<Authors>Godot Engine contributors</Authors>
|
|
|
|
|
|
|
|
|
|
<PackageId>Godot.NET.Sdk</PackageId>
|
2023-11-29 23:00:08 +01:00
|
|
|
|
<Version>4.3.0</Version>
|
2021-03-06 00:12:42 +01:00
|
|
|
|
<PackageVersion>$(PackageVersion_Godot_NET_Sdk)</PackageVersion>
|
|
|
|
|
<RepositoryUrl>https://github.com/godotengine/godot/tree/master/modules/mono/editor/Godot.NET.Sdk</RepositoryUrl>
|
|
|
|
|
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
|
2020-07-20 15:48:12 +02:00
|
|
|
|
<PackageType>MSBuildSdk</PackageType>
|
|
|
|
|
<PackageTags>MSBuildSdk</PackageTags>
|
2021-03-06 00:12:42 +01:00
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
2024-04-24 18:24:49 +02:00
|
|
|
|
<Copyright>Copyright (c) Godot Engine contributors</Copyright>
|
2020-07-20 15:48:12 +02:00
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
|
2021-03-06 00:12:42 +01:00
|
|
|
|
<!-- Exclude target framework from the package dependencies as we don't include the build output -->
|
|
|
|
|
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
|
|
|
|
|
<IncludeBuildOutput>false</IncludeBuildOutput>
|
2020-07-20 15:48:12 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-03-06 00:12:42 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<!-- Package Sdk\Sdk.props and Sdk\Sdk.targets file -->
|
2021-03-13 01:04:55 +01:00
|
|
|
|
<None Include="Sdk\Sdk.props" Pack="true" PackagePath="Sdk" />
|
|
|
|
|
<None Include="Sdk\Sdk.targets" Pack="true" PackagePath="Sdk" />
|
2021-03-06 00:12:42 +01:00
|
|
|
|
<!-- SdkPackageVersions.props -->
|
2022-02-27 21:57:53 +01:00
|
|
|
|
<None Include="$(GodotSdkPackageVersionsFilePath)" Pack="true" PackagePath="Sdk">
|
2021-03-13 01:04:55 +01:00
|
|
|
|
<Link>Sdk\SdkPackageVersions.props</Link>
|
|
|
|
|
</None>
|
2023-10-02 18:07:20 +02:00
|
|
|
|
<None Include="Sdk\iOSNativeAOT.props" Pack="true" PackagePath="Sdk" />
|
|
|
|
|
<None Include="Sdk\iOSNativeAOT.targets" Pack="true" PackagePath="Sdk" />
|
2021-03-06 00:12:42 +01:00
|
|
|
|
</ItemGroup>
|
2020-07-20 15:48:12 +02:00
|
|
|
|
</Project>
|