This repository was archived by the owner on Oct 18, 2018. It is now read-only.
File tree 3 files changed +24
-1
lines changed
3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 73
73
Targets =" Restore"
74
74
Properties =" RestorePackagesPath=$(FallbackStagingDir);RuntimeFrameworkVersion=$(LZMAMicrosoftNETCoreApp20PackageVersion);DotNetRestoreSourcePropsPath=$(GeneratedFallbackRestoreSourcesPropsPath);DotNetBuildOffline=true;AspNetUniverseBuildOffline=true" />
75
75
76
+ <!-- Restore the netstandard2.0 project -->
77
+ <MSBuild
78
+ Projects =" $(MSBuildThisFileDirectory)tools\templates\Archive\Archive.Library.csproj"
79
+ Targets =" Restore"
80
+ Properties =" RestorePackagesPath=$(FallbackStagingDir);NETStandardLibraryPackageVersion=$(NETStandardLibrary20PackageVersion);DotNetRestoreSourcePropsPath=$(GeneratedFallbackRestoreSourcesPropsPath);DotNetBuildOffline=true;AspNetUniverseBuildOffline=true" />
81
+
76
82
<!-- Create the archive -->
77
83
<Exec Command =" $(ArchiverPath) -a $(FallbackOutputPath) $(FallbackStagingDir)" />
78
84
</Target >
Original file line number Diff line number Diff line change 49
49
<MicrosoftWebXdtPackageVersion >1.4.0</MicrosoftWebXdtPackageVersion >
50
50
<MicrosoftWin32RegistryPackageVersion >4.4.0</MicrosoftWin32RegistryPackageVersion >
51
51
<MoqPackageVersion >4.7.49</MoqPackageVersion >
52
- <NETStandardLibrary20PackageVersion >2.0.1 </NETStandardLibrary20PackageVersion >
52
+ <NETStandardLibrary20PackageVersion >2.0.3 </NETStandardLibrary20PackageVersion >
53
53
<NewtonsoftJsonBsonPackageVersion >1.0.1</NewtonsoftJsonBsonPackageVersion >
54
54
<NewtonsoftJsonPackageVersion >10.0.1</NewtonsoftJsonPackageVersion >
55
55
<NuGetFrameworksPackageVersion >4.0.0</NuGetFrameworksPackageVersion >
Original file line number Diff line number Diff line change
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
2
+
3
+ <Import Project =" $(DotNetRestoreSourcePropsPath)" Condition =" '$(DotNetRestoreSourcePropsPath)' != ''" />
4
+
5
+ <PropertyGroup >
6
+ <TargetFramework >netstandard2.0</TargetFramework >
7
+ <EnableApiCheck >false</EnableApiCheck >
8
+ <DisableImplicitNuGetFallbackFolder >true</DisableImplicitNuGetFallbackFolder >
9
+ <DisableImplicitFrameworkReferences >true</DisableImplicitFrameworkReferences >
10
+ <RestoreSources >$(RestoreSources);$(DotNetRestoreSources);</RestoreSources >
11
+ </PropertyGroup >
12
+
13
+ <ItemGroup >
14
+ <PackageReference Include =" NETStandard.Library" Version =" $(NETStandardLibraryPackageVersion)" />
15
+ </ItemGroup >
16
+
17
+ </Project >
You can’t perform that action at this time.
0 commit comments