@@ -12,7 +12,7 @@ public GivenThatWeWantToBuildACppCliProjectWithTransitiveDeps(ITestOutputHelper
12
12
13
13
private readonly Lazy < TestAsset > _buildAsset ;
14
14
15
- [ FullMSBuildOnlyFact ( Skip = "https://github.com/dotnet/sdk/issues/11008" ) ]
15
+ [ FullMSBuildOnlyFact ]
16
16
public void It_can_generate_correct_depsJson_file ( )
17
17
{
18
18
TestAsset testAsset = _buildAsset . Value ;
@@ -23,7 +23,7 @@ public void It_can_generate_correct_depsJson_file()
23
23
depsJsonContent . Should ( ) . Contain ( "NETCoreCppCliTestC.dll" , "should contain transitive reference" ) ;
24
24
}
25
25
26
- [ FullMSBuildOnlyFact ( Skip = "https://github.com/dotnet/sdk/issues/11008" ) ]
26
+ [ FullMSBuildOnlyFact ]
27
27
public void It_can_generate_all_runtimeconfig_files_to_output_folder ( )
28
28
{
29
29
TestAsset testAsset = _buildAsset . Value ;
@@ -35,7 +35,7 @@ public void It_can_generate_all_runtimeconfig_files_to_output_folder()
35
35
} ) ;
36
36
}
37
37
38
- [ FullMSBuildOnlyFact ( Skip = "https://github.com/dotnet/sdk/issues/11008" ) ]
38
+ [ FullMSBuildOnlyFact ]
39
39
public void It_can_generate_all_depsjson_files_to_output_folder ( )
40
40
{
41
41
TestAsset testAsset = _buildAsset . Value ;
@@ -52,9 +52,8 @@ private TestAsset BuildAsset()
52
52
. CopyTestAsset ( "NetCoreCppCliLibWithTransitiveDeps" )
53
53
. WithSource ( ) ;
54
54
55
- // build projects separately with BuildProjectReferences=false to simulate VS build behavior
56
55
new BuildCommand ( testAsset , "NETCoreCppCliTest" )
57
- . Execute ( "-p:Platform=win32" )
56
+ . Execute ( "-p:Platform=win32" , "-p:EnableManagedpackageReferenceSupport=true" )
58
57
. Should ( )
59
58
. Pass ( ) ;
60
59
return testAsset ;
0 commit comments