Created
March 29, 2018 06:10
-
-
Save ArseniySavin/42515096e52d45de289d7646e29cda7a to your computer and use it in GitHub Desktop.
MsBuild Tips
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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