3F / MvsSln

🧩 Customizable VisualStudio .sln parser with project support (.vcxproj, .csproj., …). Pluggable lightweight r/w handlers at runtime, and more …
MIT License
135 stars 27 forks source link

<ItemGroup>add .cs files and embedded resources #47

Closed khoshbin closed 3 years ago

khoshbin commented 3 years ago

I want to add some c# files and folders to .csproj file:

<Compile Include="financial\Invoice.cs" />
<Compile Include="financial\Invoice.Designer.cs">
  <DependentUpon>Invoice.cs</DependentUpon>
</Compile>

also I want to add some embedded resource:


  <ItemGroup>
    <EmbeddedResource Include="Images\Images.Invoice.png" />

Is it possible with your library? if yes, how?

Regards