-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.targets
More file actions
33 lines (28 loc) · 1.08 KB
/
Directory.Build.targets
File metadata and controls
33 lines (28 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<Project>
<!--
Copyright Subatomix Research Inc.
SPDX-License-Identifier: MIT
-->
<!--
* Imported late: project -> SDK .targets -> NuGet package .targets -> this
* Override properties and targets here.
https://learn.microsoft.com/en-us/visualstudio/msbuild/customize-your-build
-->
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<None Include="..\icon.png" LinkBase="Properties"
Pack="true" PackagePath="" CopyToOutputDirectory="Never" />
<None Include="..\LICENSE.txt" LinkBase="Properties"
Pack="true" PackagePath="" CopyToOutputDirectory="Never" />
<None Include="..\README.md" LinkBase="Properties"
Pack="true" PackagePath="" CopyToOutputDirectory="Never" />
</ItemGroup>
<!-- Visibility -->
<ItemGroup>
<InternalsVisibleTo Include="DependencyQueue.Tests"/>
<InternalsVisibleTo Include="DynamicProxyGenAssembly2"/>
<!-- Required for Moq to mock a class with an internal abstract method. -->
</ItemGroup>
<ItemGroup>
<Using Include="System.FormattableString" Static="true" />
</ItemGroup>
</Project>