-
Notifications
You must be signed in to change notification settings - Fork 3
/
Directory.Build.targets
34 lines (28 loc) · 1.08 KB
/
Directory.Build.targets
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
34
<Project>
<!--
Copyright 2023 Subatomix Research Inc.
SPDX-License-Identifier: ISC
-->
<!--
* Imported late: project -> SDK .targets -> NuGet package .targets -> this
* Override properties and targets here.
https://docs.microsoft.com/en-us/visualstudio/msbuild/customize-your-build
-->
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<None Include="..\icon.png" Link="Properties\icon.png"
Pack="true" PackagePath="" CopyToOutputDirectory="Never" />
<None Include="..\LICENSE.txt" Link="Properties\LICENSE.txt"
Pack="true" PackagePath="$(PackageLicenseFile)" CopyToOutputDirectory="Never" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="PSql.Tests" />
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
<!-- Required for Moq to mock a class with an internal abstract method. -->
</ItemGroup>
<ItemGroup>
<Using Remove="System.Net.Http" />
<Using Include="System.Data" />
<Using Include="System.Data.Common" />
<Using Include="System.Management.Automation" />
</ItemGroup>
</Project>