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>
|
|
|
|
<BuildCommandArgs>$(BuildCommandArgs) /p:PublishCompressedFilesPathPrefix=$(SourceBuiltToolsetDir)</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" />
|
|
|
|
<RepositoryReference Include="xliff-tasks" />
|
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-20 08:49:04 -05:00
|
|
|
<!-- TODO: Reenable once format targets net8.0 (https://github.com/dotnet/format/issues/1802) -->
|
|
|
|
<!-- <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>
|