2020-07-20 13:48:12 +00:00
|
|
|
<Project Sdk="Microsoft.Build.NoTargets/2.0.1">
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
2020-10-23 07:25:16 +00:00
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
2020-07-20 13:48:12 +00:00
|
|
|
|
|
|
|
<Description>MSBuild .NET Sdk for Godot projects.</Description>
|
|
|
|
<Authors>Godot Engine contributors</Authors>
|
|
|
|
|
|
|
|
<PackageId>Godot.NET.Sdk</PackageId>
|
2023-11-29 22:00:08 +00:00
|
|
|
<Version>4.3.0</Version>
|
2021-03-05 23:12:42 +00: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 13:48:12 +00:00
|
|
|
<PackageType>MSBuildSdk</PackageType>
|
|
|
|
<PackageTags>MSBuildSdk</PackageTags>
|
2021-03-05 23:12:42 +00:00
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
2020-07-20 13:48:12 +00:00
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
2021-03-05 23:12:42 +00: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 13:48:12 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2021-03-05 23:12:42 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<!-- Package Sdk\Sdk.props and Sdk\Sdk.targets file -->
|
2021-03-13 00:04:55 +00:00
|
|
|
<None Include="Sdk\Sdk.props" Pack="true" PackagePath="Sdk" />
|
|
|
|
<None Include="Sdk\Sdk.targets" Pack="true" PackagePath="Sdk" />
|
2021-03-05 23:12:42 +00:00
|
|
|
<!-- SdkPackageVersions.props -->
|
2022-02-27 20:57:53 +00:00
|
|
|
<None Include="$(GodotSdkPackageVersionsFilePath)" Pack="true" PackagePath="Sdk">
|
2021-03-13 00:04:55 +00:00
|
|
|
<Link>Sdk\SdkPackageVersions.props</Link>
|
|
|
|
</None>
|
2023-10-02 16:07:20 +00:00
|
|
|
<None Include="Sdk\iOSNativeAOT.props" Pack="true" PackagePath="Sdk" />
|
|
|
|
<None Include="Sdk\iOSNativeAOT.targets" Pack="true" PackagePath="Sdk" />
|
2021-03-05 23:12:42 +00:00
|
|
|
</ItemGroup>
|
2020-07-20 13:48:12 +00:00
|
|
|
</Project>
|