Skip to content

Commit 95529b3

Browse files
committed
2 parents 070794e + a6fa905 commit 95529b3

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

src/Verify.Tests/NugetTests.Run/build/Verify.verified.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<NoWarn>$(NoWarn);CA2255</NoWarn>
88
</PropertyGroup>
99
<Target Name="WriteVerifyAttributes"
10-
Condition="$(Language) == 'VB' or $(Language) == 'C#' or $(Language) == 'F#'"
10+
Condition="$(Language) == 'VB' or $(Language) == 'C#' or $(Language) == 'F#' or $(Language) == 'X#'"
1111
BeforeTargets="BeforeCompile;CoreCompile"
1212
Inputs="$(MSBuildAllProjects)"
1313
Outputs="$(IntermediateOutputPath)$(VerifyAttributesFile)">

src/Verify.Tests/NugetTests.Run/buildTransitive/Verify.verified.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<NoWarn>$(NoWarn);CA2255</NoWarn>
88
</PropertyGroup>
99
<Target Name="WriteVerifyAttributes"
10-
Condition="$(Language) == 'VB' or $(Language) == 'C#' or $(Language) == 'F#'"
10+
Condition="$(Language) == 'VB' or $(Language) == 'C#' or $(Language) == 'F#' or $(Language) == 'X#'"
1111
BeforeTargets="BeforeCompile;CoreCompile"
1212
Inputs="$(MSBuildAllProjects)"
1313
Outputs="$(IntermediateOutputPath)$(VerifyAttributesFile)">

src/Verify.Xunit.Tests/NugetTests.Run/build/Verify.Xunit.verified.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<VerifyXunitAttributesFile>VerifyXunit.Attributes$(MSBuildProjectExtension.Replace('proj', ''))</VerifyXunitAttributesFile>
1010
</PropertyGroup>
1111
<Target Name="WriteVerifyXunitAttributes"
12-
Condition="$(Language) == 'VB' or $(Language) == 'C#' or $(Language) == 'F#'"
12+
Condition="$(Language) == 'VB' or $(Language) == 'C#' or $(Language) == 'F#' or $(Language) == 'X#'"
1313
BeforeTargets="BeforeCompile;CoreCompile"
1414
Inputs="$(MSBuildAllProjects)"
1515
Outputs="$(IntermediateOutputPath)$(VerifyXunitAttributesFile)">

src/Verify.Xunit.Tests/NugetTests.Run/buildTransitive/Verify.Xunit.verified.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<VerifyXunitAttributesFile>VerifyXunit.Attributes$(MSBuildProjectExtension.Replace('proj', ''))</VerifyXunitAttributesFile>
1010
</PropertyGroup>
1111
<Target Name="WriteVerifyXunitAttributes"
12-
Condition="$(Language) == 'VB' or $(Language) == 'C#' or $(Language) == 'F#'"
12+
Condition="$(Language) == 'VB' or $(Language) == 'C#' or $(Language) == 'F#' or $(Language) == 'X#'"
1313
BeforeTargets="BeforeCompile;CoreCompile"
1414
Inputs="$(MSBuildAllProjects)"
1515
Outputs="$(IntermediateOutputPath)$(VerifyXunitAttributesFile)">

src/Verify.Xunit/buildTransitive/Verify.Xunit.props

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
<Using Include="VerifyXunit.Verifier" Static="True" />
77
</ItemGroup>
88
<PropertyGroup>
9-
<VerifyXunitAttributesFile>VerifyXunit.Attributes$(MSBuildProjectExtension.Replace('proj', ''))</VerifyXunitAttributesFile>
9+
<VerifyXunitAttributesFile Condition="$(Language) != 'X#'">VerifyXunit.Attributes$(MSBuildProjectExtension.Replace('proj', ''))</VerifyXunitAttributesFile>
10+
<VerifyXunitAttributesFile Condition="$(Language) == 'X#'">VerifyXunit.Attributes.prg</VerifyXunitAttributesFile>
1011
</PropertyGroup>
1112
<Target Name="WriteVerifyXunitAttributes"
12-
Condition="$(Language) == 'VB' or $(Language) == 'C#' or $(Language) == 'F#'"
13+
Condition="$(Language) == 'VB' or $(Language) == 'C#' or $(Language) == 'F#' or $(Language) == 'X#'"
1314
BeforeTargets="BeforeCompile;CoreCompile"
1415
Inputs="$(MSBuildAllProjects)"
1516
Outputs="$(IntermediateOutputPath)$(VerifyXunitAttributesFile)">

src/Verify/buildTransitive/Verify.props

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
<PropertyGroup>
44
<Deterministic>false</Deterministic>
55
<DeterministicSourcePaths>false</DeterministicSourcePaths>
6-
<VerifyAttributesFile>Verify.Attributes$(MSBuildProjectExtension.Replace('proj', ''))</VerifyAttributesFile>
6+
<VerifyAttributesFile Condition="$(Language) != 'X#'">Verify.Attributes$(MSBuildProjectExtension.Replace('proj', ''))</VerifyAttributesFile>
7+
<VerifyAttributesFile Condition="$(Language) == 'X#'">Verify.Attributes.prg</VerifyAttributesFile>
78
<NoWarn>$(NoWarn);CA2255</NoWarn>
89
</PropertyGroup>
910
<Target Name="WriteVerifyAttributes"
10-
Condition="$(Language) == 'VB' or $(Language) == 'C#' or $(Language) == 'F#'"
11+
Condition="$(Language) == 'VB' or $(Language) == 'C#' or $(Language) == 'F#' or $(Language) == 'X#'"
1112
BeforeTargets="BeforeCompile;CoreCompile"
1213
Inputs="$(MSBuildAllProjects)"
1314
Outputs="$(IntermediateOutputPath)$(VerifyAttributesFile)">

0 commit comments

Comments
 (0)