Skip to content

Instantly share code, notes, and snippets.

@ArseniySavin
Created March 29, 2018 06:10
Show Gist options
  • Save ArseniySavin/42515096e52d45de289d7646e29cda7a to your computer and use it in GitHub Desktop.
Save ArseniySavin/42515096e52d45de289d7646e29cda7a to your computer and use it in GitHub Desktop.
MsBuild Tips
// Adding dll config for reference assembly into build folder. add this list into csproj file your library assembly.
<ItemGroup>
<Content Include="app.config">
<Link>$(TargetName).dll.config</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment