6 Star 19 Fork 2

Gitee 极速下载/dotnet-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/dotnet/runtime
克隆/下载
Build.proj 2.44 KB
一键复制 编辑 原始数据 按行查看 历史
<Project Sdk="Microsoft.Build.Traversal">
<ItemGroup>
<!-- Subsets are already imported by Directory.Build.props. -->
<ProjectReference Include="@(ProjectToBuild)" />
<!-- Only include tasks.proj during restore and build incrementally via a target. -->
<ProjectReference Include="$(RepoTasksDir)tasks.proj" Condition="'$(MSBuildRestoreSessionId)' != ''" />
</ItemGroup>
<Import Project="$(RepositoryEngineeringDir)SubsetValidation.targets" />
<Import Project="$(RepositoryEngineeringDir)restore\optimizationData.targets" Condition="'$(DotNetBuildSourceOnly)' != 'true'" />
<Target Name="BuildLocalTasks"
BeforeTargets="Build">
<MSBuild Projects="$(RepoTasksDir)tasks.proj"
Targets="BuildIncrementally" />
</Target>
<Target Name="SetupBootstrapLayout"
AfterTargets="Build"
Condition="'$(Subset)' == 'bootstrap'">
<ItemGroup>
<AotSdkFile
Include="$(CoreCLRAotSdkDir)/*"
Condition="'$(UseNativeAotForComponents)' == 'true'" />
<AppHostFile
Include="$([MSBuild]::NormalizePath('$(DotNetHostBinDir)', 'apphost$(ExeSuffix)'))" />
<AppHostFile
Include="$([MSBuild]::NormalizePath('$(CoreCLRArtifactsPath)', 'corehost', 'singlefilehost$(ExeSuffix)'))"
Condition="'$(UseNativeAotForComponents)' != 'true'" />
<RefPackFile Include="$(MicrosoftNetCoreAppRefPackDir)/**/*" />
<RuntimePackFile Include="$(MicrosoftNetCoreAppRuntimePackDir)/**/*" />
<RidGraphFile Include="$(ArtifactsBinDir)Microsoft.NETCore.Platforms/*.json" />
<AotSdkFile
DestinationPath="$(BootstrapAotSdkDir)/%(Filename)%(Extension)" />
<AppHostFile
DestinationPath="$(BootstrapHostDir)/%(Filename)%(Extension)" />
<RefPackFile
DestinationPath="$(BootstrapRefPackDir)/%(RecursiveDir)%(Filename)%(Extension)" />
<RuntimePackFile
DestinationPath="$(BootstrapRuntimePackDir)/%(RecursiveDir)%(Filename)%(Extension)" />
<RidGraphFile
DestinationPath="$(BootstrapRidGraphDir)/%(RecursiveDir)%(Filename)%(Extension)" />
<BootstrapFile Include="@(AotSdkFile);@(AppHostFile);@(RefPackFile);@(RuntimePackFile);@(RidGraphFile)" />
</ItemGroup>
<Copy
SourceFiles="@(BootstrapFile)"
DestinationFiles="@(BootstrapFile->Metadata('DestinationPath'))"
SkipUnchangedFiles="true" />
<Message Importance="high" Text="Bootstrap files copied to $(ArtifactsDir)bootstrap" />
</Target>
</Project>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/dotnet-core.git
git@gitee.com:mirrors/dotnet-core.git
mirrors
dotnet-core
dotnet-core
main

搜索帮助