You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[main] Update dependencies from dotnet/msbuild (#44977)
[main] Update dependencies from dotnet/msbuild
- Created a follow up ticket, skipping affected tests to unblock merging for now.
- forgot to skip one test
- Merge branch 'main' into darc-main-18ac571e-b280-4bd1-b026-1167471dd6fa
- Merge branch 'main' into darc-main-18ac571e-b280-4bd1-b026-1167471dd6fa
- Revert "forgot to skip one test"
This reverts commit efab774.
- Revert "Created a follow up ticket, skipping affected tests to unblock merging for now."
This reverts commit 00cdbad.
- Merge branch 'main' into darc-main-18ac571e-b280-4bd1-b026-1167471dd6fa
- Merge branch 'main' into darc-main-18ac571e-b280-4bd1-b026-1167471dd6fa
- MSBuild supports custom cultures
- Separate FullFW and Core test cases
- Fix multiple attributes
- Merge branch 'darc-main-18ac571e-b280-4bd1-b026-1167471dd6fa' of https://github.com/dotnet/sdk into darc-main-18ac571e-b280-4bd1-b026-1167471dd6fa
<MicrosoftBuildMinimumVersionCondition="Exists('$(RepoRoot)src\Layout\redist\minimumMSBuildVersion') and '$(DotNetBuildSourceOnly)' != 'true'">$([System.IO.File]::ReadAllText('$(RepoRoot)src\Layout\redist\minimumMSBuildVersion').Trim())</MicrosoftBuildMinimumVersion>
// Custom culture is allowed, but if set explicitly and overwritten - a warning is issued.
42
+
buildCommand.Execute().Should().Pass().And
43
+
// warning MSB3002: Explicitly set culture "test-1" for item "Resources.test-1.resx" was overwritten with inferred culture "", because 'RespectAlreadyAssignedItemCulture' property was not set.
44
+
.HaveStdOutContaining("warning MSB3002:");
45
+
}
46
+
47
+
[InlineData("net7.0")]
48
+
[InlineData("net6.0")]
49
+
[FullMSBuildOnlyTheory]
50
+
// Is this Failing? Is full FW MSBuild already on 17.13? Then remove this test and remove `[CoreMSBuildOnlyTheory]` attribute on the test above
51
+
//
52
+
// Until MSBuild 17.13 is merged into FullFW MSBuild in sdk tests - the test will fail, as
53
+
// proper recognition of custom cultures in RAR is not supported and hence the build will fail during copy:
54
+
//
55
+
// Microsoft.Common.CurrentVersion.targets(4959,5): error MSB3030: Could not copy the file "obj\Debug\net7.0\test-1\MSBuildCultureResourceGeneration.resources.dll" because it was not found.
0 commit comments