Skip to content

Instantly share code, notes, and snippets.

@Infarh
Created March 13, 2023 15:17
Show Gist options
  • Save Infarh/0b0c48740b7ca018e51d6d974bca15ab to your computer and use it in GitHub Desktop.
Save Infarh/0b0c48740b7ca018e51d6d974bca15ab to your computer and use it in GitHub Desktop.
Задание имени ресурсу в .csproj
var assembly = typeof(ProgramNamespace.Program).GetTypeInfo().Assembly;
using var resource = assembly.GetManifestResourceStream("Information.Data.xml");
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<EmbeddedResource Include="data.xml" LogicalName="Information.Data.xml"/>
</ItemGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment