mirror of https://github.com/dotnet/tye.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
752 B
16 lines
752 B
<Project>
|
|
<Import Project="Sdk.targets" Sdk="Microsoft.DotNet.Arcade.Sdk" />
|
|
|
|
<PropertyGroup Label="Resx settings">
|
|
<GenerateResxSource Condition="$(GenerateResxSource) == ''">true</GenerateResxSource>
|
|
<GenerateResxSourceEmitFormatMethods Condition="$(GenerateResxSourceEmitFormatMethods) == ''">true</GenerateResxSourceEmitFormatMethods>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="AddInternalsVisibleTo" BeforeTargets="CoreCompile">
|
|
<ItemGroup Condition="'@(InternalsVisibleTo->Count())' > 0">
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
|
|
<_Parameter1>%(InternalsVisibleTo.Identity), PublicKey=$(PublicKey)</_Parameter1>
|
|
</AssemblyAttribute>
|
|
</ItemGroup>
|
|
</Target>
|
|
</Project>
|