Skip to content

Commit 07bab03

Browse files
author
John Luo
authored
Merge pull request #22264 from dotnet/johluo/tooling-mopup
Mopup for aspnetcore-tooling migration.
2 parents ccb4454 + 297c82f commit 07bab03

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/Razor/Microsoft.NET.Sdk.Razor/src/Microsoft.NET.Sdk.Razor.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
Projects="..\..\Microsoft.AspNetCore.Mvc.Razor.Extensions\src\Microsoft.AspNetCore.Mvc.Razor.Extensions.csproj"
6060
Properties="TargetFramework=netstandard2.0"
6161
Targets="Build"
62+
Condition="'$(NoBuild)' != 'true'"
6263
ContinueOnError="true" />
6364

6465
<ItemGroup>

src/Razor/Microsoft.NET.Sdk.Razor/test/IntegrationTests/StaticWebAssetsIntegrationTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public StaticWebAssetsIntegrationTest(
2828

2929
public ITestOutputHelper Output { get; private set; }
3030

31-
[Fact]
31+
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/22049")]
3232
[InitializeTestProject("AppWithPackageAndP2PReference", language: "C#", additionalProjects: new[] { "ClassLibrary", "ClassLibrary2" })]
3333
public async Task Build_GeneratesStaticWebAssetsManifest_Success_CreatesManifest()
3434
{
@@ -125,7 +125,7 @@ public async Task Publish_WithBuildReferencesDisabled_CopiesStaticWebAssetsToDes
125125
Assert.FileExists(publish, PublishOutputPath, Path.Combine("wwwroot", "_content", "PackageLibraryTransitiveDependency", "js", "pkg-transitive-dep.js"));
126126
}
127127

128-
[Fact]
128+
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/22049")]
129129
[InitializeTestProject("AppWithPackageAndP2PReference", additionalProjects: new[] { "ClassLibrary", "ClassLibrary2" })]
130130
public async Task Publish_NoBuild_CopiesStaticWebAssetsToDestinationFolder()
131131
{
@@ -183,7 +183,7 @@ public async Task Clean_Success_RemovesManifestAndCache()
183183
Assert.FileDoesNotExist(result, IntermediateOutputPath, "staticwebassets", "AppWithPackageAndP2PReference.StaticWebAssets.xml");
184184
}
185185

186-
[Fact]
186+
[Fact(Skip = "https://github.com/dotnet/aspnetcore/issues/22049")]
187187
[InitializeTestProject("AppWithPackageAndP2PReference", language: "C#", additionalProjects: new[] { "ClassLibrary", "ClassLibrary2" })]
188188
public async Task Rebuild_Success_RecreatesManifestAndCache()
189189
{

0 commit comments

Comments
 (0)