-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.targets
53 lines (45 loc) · 2.01 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<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" />
<None Include="..\README.md" Link="Properties\README.md"
Pack="true" PackagePath="$(PackageReadmeFile)" CopyToOutputDirectory="Never" />
</ItemGroup>
<!-- Visibility -->
<ItemGroup>
<InternalsVisibleTo Include="Subatomix.PowerShell.TaskHost.Tests"/>
<InternalsVisibleTo Include="DynamicProxyGenAssembly2"/>
<!-- Required for Moq to mock a class with an internal abstract method. -->
</ItemGroup>
<ItemGroup>
<Using Include="System.Diagnostics.Debugger" Alias="Debugger" />
<Using Include="System.FormattableString" Static="true" />
<Using Include="System.Management.Automation" />
<Using Include="System.Management.Automation" Alias="Sma" />
<Using Include="System.Management.Automation.Host" />
<Using Include="System.Management.Automation.Runspaces" />
</ItemGroup>
<!-- Versioning -->
<ItemGroup>
<PackageReference Include="Subatomix.Build.Versioning.Semantic" Version="1.0.1" PrivateAssets="all" />
</ItemGroup>
<!-- <inheritdoc/> support -->
<ItemGroup>
<PackageReference Include="SauceControl.InheritDoc" Version="1.3.0" PrivateAssets="all" />
</ItemGroup>
<!-- SourceLink https://github.com/dotnet/sourcelink/blob/main/README.md -->
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
</ItemGroup>
</Project>