Skip to content

Commit 728b131

Browse files
github-actions[bot]lambdageekjeffschwMSFT
authored
[cdac][cdac-build-tool] Don't let msbuild rewrite the resource name (#108296)
Work around dotnet/msbuild#9152 Possibly fixes #107936 Co-authored-by: Aleksey Kliger <[email protected]> Co-authored-by: Jeff Schwartz <[email protected]>
1 parent 2924cc8 commit 728b131

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/coreclr/tools/cdac-build-tool/cdac-build-tool.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
<BaselineManifestResourcePrefix>Microsoft.DotNet.Diagnostics.DataContract.Baseline:</BaselineManifestResourcePrefix>
2525
</PropertyGroup>
2626
<ItemGroup>
27-
<EmbeddedResource Include="Resources/contract-descriptor.c.in" />
27+
<EmbeddedResource Include="Resources/contract-descriptor.c.in" WithCulture="false" />
2828
<!-- embed baseline specs with manifest resource names like Microsoft.DotNet.Diagnostics.DataContract.Baseline:net9.0/osx-arm64.jsonc -->
2929
<!-- TODO: [cdac] - make sure we use / not \ on windows, too. -->
30-
<EmbeddedResource Include="$(RepoRoot)docs\design\datacontracts\data\**\*.jsonc" LogicalName="$(BaselineManifestResourcePrefix)%(RecursiveDir)%(Filename)%(Extension)" />
30+
<EmbeddedResource Include="$(RepoRoot)docs\design\datacontracts\data\**\*.jsonc" LogicalName="$(BaselineManifestResourcePrefix)%(RecursiveDir)%(Filename)%(Extension)" WithCulture="false" />
3131
</ItemGroup>
3232
</Project>

0 commit comments

Comments
 (0)