This repository was archived by the owner on Apr 20, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +23
-6
lines changed
tools/Signing.Dependencies Expand file tree Collapse file tree 6 files changed +23
-6
lines changed Original file line number Diff line number Diff line change 1313 <add key =" xunit" value =" https://www.myget.org/F/xunit/api/v3/index.json" />
1414 <add key =" api.nuget.org" value =" https://api.nuget.org/v3/index.json" />
1515 <add key =" vstest" value =" https://dotnet.myget.org/F/vstest/api/v3/index.json" />
16+ <add key =" build_tools" value =" https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json" />
1617 </packageSources >
1718</configuration >
Original file line number Diff line number Diff line change 1919 <CliCommandLineParserVersion >0.1.0-alpha-142</CliCommandLineParserVersion >
2020 <CliMigrateVersion >1.2.1-alpha-002130</CliMigrateVersion >
2121 <AspNetCoreRuntimeVersion >2.0.0-preview1-65</AspNetCoreRuntimeVersion >
22+ <MicroBuildVersion >0.2.0</MicroBuildVersion >
2223
2324 <!-- This should either be timestamped or notimestamp as appropriate -->
2425 <AspNetCoreRuntimePackageFlavor >notimestamp</AspNetCoreRuntimePackageFlavor >
Original file line number Diff line number Diff line change 1+ <Project >
2+ <PropertyGroup >
3+ <MicroBuildPropsAndTargetsPath >$(NuGetPackagesDir)/microbuild.core/$(MicroBuildVersion)/build/</MicroBuildPropsAndTargetsPath >
4+ </PropertyGroup >
5+ </Project >
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<Project InitialTargets =" SetSigningProperties" DefaultTargets =" SignFiles" ToolsVersion =" 14.0" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" >
3- <PropertyGroup >
4- <RepoRoot >$(MSBuildThisFileDirectory)/..</RepoRoot >
5- </PropertyGroup >
6-
7- <Import Project =" $(RepoRoot)/build_tools/MicroBuild.Core.props" />
3+ <Import Project =" $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
4+ <Import Project =" $(MicroBuildPropsAndTargetsPath)MicroBuild.Core.props" />
85
96 <!-- This will be overridden if we're building with MicroBuild. -->
107 <Target Name =" SignFiles" >
127124 </ItemGroup >
128125 </Target >
129126
130- <Import Project =" $(RepoRoot)/build_tools/ MicroBuild.Core.targets" />
127+ <Import Project =" $(MicroBuildPropsAndTargetsPath) MicroBuild.Core.targets" />
131128</Project >
Original file line number Diff line number Diff line change 3535 <Import Project =" build/BuildDefaults.props" />
3636 <Import Project =" build/Stage0.props" />
3737 <Import Project =" build/CrossGen.props" />
38+ <Import Project =" build/MicroBuild.props" />
3839 <Import Project =" build/VersionBadge.props" />
3940 <Import Project =" build/BundledRuntimes.props" />
4041 <Import Project =" build/BackwardsCompatibilityRuntimes.props" />
Original file line number Diff line number Diff line change 1+ <Project Sdk =" Microsoft.NET.Sdk" >
2+ <Import Project =" $([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
3+
4+ <PropertyGroup >
5+ <TargetFramework >netcoreapp1.0</TargetFramework >
6+ </PropertyGroup >
7+
8+ <ItemGroup >
9+ <PackageReference Include =" MicroBuild.Core" Version =" $(MicroBuildVersion)" />
10+ </ItemGroup >
11+
12+ </Project >
You can’t perform that action at this time.
0 commit comments