Merge branch 'release/7.0.3xx'
This commit is contained in:
commit
c08416f7c7
2 changed files with 11 additions and 1 deletions
|
@ -78,7 +78,7 @@
|
|||
Properties="SourcePath=$(RestorePackagesPath);DestinationPath=$(UnpackedTarPath);PackageName=%(PackageDownload.Identity);PackageVersion=%(PackageDownload.Version)" />
|
||||
|
||||
<!-- override PVP with bootstrap-override package versions -->
|
||||
<Message Text=" Overriding previously-source-built package versions with $(BootstrapOverrideVersionsProps)" Importance="High" />
|
||||
<Message Text=" Overriding previously-source-built package versions with $(BootstrapOverrideVersionsProps)" Importance="High" Condition="Exists('$(BootstrapOverrideVersionsProps)')" />
|
||||
<ReadLinesFromFile File="$(UnpackedTarPath)/PackageVersions.props">
|
||||
<Output TaskParameter="Lines" ItemName="OriginalPackageVersionLines" />
|
||||
</ReadLinesFromFile>
|
||||
|
@ -94,10 +94,12 @@
|
|||
<WriteLinesToFile File="$(UnpackedTarPath)/PackageVersions.props"
|
||||
Lines="@(OriginalPackageVersionLines)"
|
||||
Overwrite="true"
|
||||
Condition="Exists('$(BootstrapOverrideVersionsProps)')"
|
||||
/>
|
||||
<WriteLinesToFile File="$(UnpackedTarPath)/PackageVersions.props"
|
||||
Lines="@(BootstrapPackageVersionLines)"
|
||||
Overwrite="false"
|
||||
Condition="Exists('$(BootstrapOverrideVersionsProps)')"
|
||||
/>
|
||||
|
||||
<!-- Repack tarball with new bootstrap name -->
|
||||
|
|
|
@ -7,5 +7,13 @@
|
|||
<Method Name="Microsoft.NET.Publish.Tests.GivenThatWeWantToPublishAWebApp.It_should_publish_framework_dependent_for_2x"
|
||||
Skip="true"
|
||||
Reason="https://github.com/NuGet/Home/issues/8571"/>
|
||||
|
||||
<Method Name="Microsoft.NET.Publish.Tests.GivenThatWeWantToPublishAWebApp.PublishWebAppWithPublishProfile"
|
||||
Skip="true"
|
||||
Reason="https://github.com/NuGet/Home/issues/8571"/>
|
||||
|
||||
<Method Name="Microsoft.NET.Publish.Tests.GivenThatWeWantToPublishAWebApp.It_should_publish_self_contained_for_2x"
|
||||
Skip="true"
|
||||
Reason="https://github.com/NuGet/Home/issues/8571"/>
|
||||
</SkippedTests>
|
||||
</Tests>
|
||||
|
|
Loading…
Reference in a new issue