Remove resx-in-subfolder known issue (#3471)

* Remove resx-in-subfolder known issue

This was resolved before RTW by microsoft/msbuild#4702.

* Mark preview issue as resolved
This commit is contained in:
Rainer Sigwald 2019-09-30 17:23:26 -05:00 committed by Vivek Mishra
parent 246019c1e2
commit d617260e82
2 changed files with 3 additions and 7 deletions

View file

@ -42,12 +42,6 @@ This document lists known issues for **.NET Core 3.0 GA and beyond releases** wh
</PropertyGroup>
```
- **Builds fail with `MSB3041` when a `.resx` file is in a subfolder [microsoft/msbuild#4695](https://github.com/microsoft/msbuild/issues/4695)**
MSBuild incorrectly constructs paths to `DependentUpon` source files related to `.resx` files that aren't at the project root. There is a workaround:
Explicitly set `DependentUpon` metadata for resource files ([example for Entity Framework migrations](https://github.com/aspnet/EntityFramework6/issues/1225#issuecomment-528571274)).
### Preview 5
- **Visual style in WinForms app not showing correctly when publishing with PublishReadyToRun=true**

View file

@ -19,7 +19,7 @@ This document lists known issues for **.NET Core 3.0 Preview releases** which ma
### Preview 9
- **Misnamed or colliding non-resx resources ([microsoft/msbuild#4740](https://github.com/microsoft/msbuild/issues/4740))**
- **[RESOLVED] Misnamed or colliding non-resx resources ([microsoft/msbuild#4740](https://github.com/microsoft/msbuild/issues/4740))**
Projects that specify non-resx `EmbeddedResource`s may have the resources embedded under an incorrect name (causing code that uses the correct name to fail at runtime). If two or more files are embedded in this way, `CS1508: The resource identifier ... has already been used in this assembly` may be issued at build time.
@ -31,6 +31,8 @@ This document lists known issues for **.NET Core 3.0 Preview releases** which ma
<EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
</PropertyGroup>
```
Resolved in the final `3.0.100` SDK.
- **Builds fail with `MSB3041` when a `.resx` file is in a subfolder [microsoft/msbuild#4695](https://github.com/microsoft/msbuild/issues/4695)**