2021-06-24 16:36:04 -05:00
|
|
|
<Project>
|
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-08-10 11:43:07 -05:00
|
|
|
<BuildCommandArgs>$(StandardSourceBuildArgs)</BuildCommandArgs>
|
|
|
|
<BuildCommandArgs>$(BuildCommandArgs) $(FlagParameterPrefix)nodereuse $(ArcadeFalseBoolBuildArg)</BuildCommandArgs>
|
2021-06-24 16:36:04 -05:00
|
|
|
<BuildCommandArgs>$(BuildCommandArgs) /p:PackageProjectUrl=https://github.com/dotnet/sdk</BuildCommandArgs>
|
|
|
|
|
2023-08-16 16:02:33 -07:00
|
|
|
<!-- Propagate RID set in source-build to sdk repo -->
|
|
|
|
<_platformIndex>$(NETCoreSdkPortableRuntimeIdentifier.LastIndexOf('-'))</_platformIndex>
|
|
|
|
<_baseOS>$(NETCoreSdkPortableRuntimeIdentifier.Substring(0, $(_platformIndex)))</_baseOS>
|
2023-11-20 13:20:51 -05:00
|
|
|
<_baseOS Condition="'$(OverrideTargetOS)' != ''">$(OverrideTargetOS)</_baseOS>
|
|
|
|
<_targetPortableArch>$(Platform)</_targetPortableArch>
|
|
|
|
<_targetPortableArch Condition="'$(OverrideTargetArch)' != ''">$(OverrideTargetArch)</_targetPortableArch>
|
|
|
|
<BuildCommandArgs>$(BuildCommandArgs) /p:PortableRid=$(_baseOS)-$(_targetPortableArch)</BuildCommandArgs>
|
2023-08-16 16:02:33 -07:00
|
|
|
<BuildCommandArgs>$(BuildCommandArgs) /p:TargetRid=$(TargetRid)</BuildCommandArgs>
|
|
|
|
|
2023-02-11 00:49:32 +01:00
|
|
|
<!-- Just like mono, arm does not support NativeAot -->
|
|
|
|
<BuildCommandArgs Condition="'$(BuildArchitecture)' == 'arm'">$(BuildCommandArgs) /p:NativeAotSupported=false</BuildCommandArgs>
|
|
|
|
|
2021-06-24 16:36:04 -05:00
|
|
|
<LogVerbosityOptOut>true</LogVerbosityOptOut>
|
|
|
|
<BuildCommandArgs>$(BuildCommandArgs) -v $(LogVerbosity)</BuildCommandArgs>
|
|
|
|
|
2021-08-10 11:43:07 -05:00
|
|
|
<BuildCommand>$(StandardSourceBuildCommand) $(BuildCommandArgs)</BuildCommand>
|
2021-06-24 16:36:04 -05:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<RepositoryReference Include="arcade" />
|
2021-08-23 17:05:58 -05:00
|
|
|
<RepositoryReference Include="runtime" />
|
2021-06-24 16:36:04 -05:00
|
|
|
<RepositoryReference Include="msbuild" />
|
2022-04-19 17:19:00 -05:00
|
|
|
<RepositoryReference Include="source-build-externals" />
|
2021-08-24 15:01:06 -05:00
|
|
|
<RepositoryReference Include="nuget-client" />
|
2021-08-24 10:33:44 -05:00
|
|
|
<RepositoryReference Include="roslyn-analyzers" />
|
2021-06-24 16:36:04 -05:00
|
|
|
<RepositoryReference Include="vstest" />
|
|
|
|
<RepositoryReference Include="fsharp" />
|
2023-04-21 03:09:55 +00:00
|
|
|
<RepositoryReference Include="format" />
|
2021-08-31 07:41:54 -07:00
|
|
|
<RepositoryReference Include="deployment-tools" />
|
2022-12-16 11:27:13 -06:00
|
|
|
<RepositoryReference Include="razor" />
|
2021-06-24 16:36:04 -05:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
|
|
|
|
</Project>
|