Last active
March 10, 2020 00:18
-
-
Save MiloszKrajewski/6f40f08cb56742a5b0ada404e40484f5 to your computer and use it in GitHub Desktop.
MsBuild tricks (does NOT work with signing)
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
| <ItemGroup> | |
| <Content Include="../OtherLib/Internal/**/*.*"> | |
| <Link>Shared/Internal/%(RecursiveDir)%(Filename)%(Extension)</Link> | |
| </Content> | |
| </ItemGroup> |
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
| <ItemGroup> | |
| <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute"> | |
| <_Parameter1>$(AssemblyName).Test</_Parameter1> | |
| </AssemblyAttribute> | |
| </ItemGroup> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment