Visual Studio .NET 2003: resx files ...
I have a project containing custom pipeline components. Each component has its own
I had no idea why there was a difference between the visualization for both
Dunno how to do it without editing the project file though ...
.resx
-file. For some reason the .resx
-file for ComponentA was included in the project as a seperate file and the .resx
-file for ComponentB was only visible if you clicked the [+]
-sign left of my component.I had no idea why there was a difference between the visualization for both
.resx
-files. When I edited the .csproj
-file, I saw why it happened:If you remove the
<File
RelPath = "ComponentB.resx"
DependentUpon = "ComponentB.cs"
BuildAction = "EmbeddedResource"
/>
DependentUpon
property, the file becomes visable in your project.Dunno how to do it without editing the project file though ...
Comments