-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDirectory.Build.targets
37 lines (31 loc) · 1.34 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
<Project>
<!--
Copyright Jeffrey Sharp
SPDX-License-Identifier: ISC
-->
<!--
* 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" 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>
<ItemGroup>
<InternalsVisibleTo Include="RSMassTransit.Client.Tests"/>
<InternalsVisibleTo Include="RSMassTransit.Client.AzureServiceBus.Core"/>
<InternalsVisibleTo Include="RSMassTransit.Client.RabbitMQ"/>
<InternalsVisibleTo Include="RSMassTransit.Engine"/>
<InternalsVisibleTo Include="RSMassTransit.Tests"/>
<InternalsVisibleTo Include="DynamicProxyGenAssembly2"/>
<!-- Required for Moq to mock a class with an internal abstract method. -->
</ItemGroup>
<ItemGroup>
<Using Include="MassTransit" />
</ItemGroup>
</Project>