mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-09 09:34:49 +09:00

Generally a straight port. Removed ArcadeBuildFromSource and ArcadeBuildVertical and replaced with DotNetBuild.
18 lines
831 B
XML
18 lines
831 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<!-- Unset the repo tool manifest property in CI as we don't use repo tools there anyway,
|
|
until https://github.com/dotnet/sdk/issues/10938 is fixed. -->
|
|
<_RepoToolManifest Condition="'$(ContinuousIntegrationBuild)' == 'true'" />
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.DotNet.Build.Tasks.Packaging" Version="$(MicrosoftDotNetBuildTasksPackagingVersion)" />
|
|
<PackageReference Include="Microsoft.DotNet.Build.Tasks.Templating" Version="$(MicrosoftDotNetBuildTasksTemplatingVersion)" />
|
|
</ItemGroup>
|
|
|
|
<!-- excluded from source build -->
|
|
<ItemGroup Condition="'$(DotNetBuildSourceOnly)' != 'true'">
|
|
<PackageReference Include="Microsoft.DotNet.VersionTools.Tasks" Version="$(MicrosoftDotNetVersionToolsTasksVersion)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|