-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathApache.NMS.ActiveMQ.NetStd.csproj
51 lines (45 loc) · 2.15 KB
/
Apache.NMS.ActiveMQ.NetStd.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>Apache.NMS.ActiveMQ</RootNamespace>
<Product>Apache NMS for ActiveMQ Class Library for .net standard</Product>
<Description>Apache NMS for ActiveMQ Class Library (.Net Standard Messaging Library Implementation): An implementation of the NMS API for ActiveMQ</Description>
<Copyright>Copyright (C) 2005-2016 Apache Software Foundation</Copyright>
<AssemblyVersion>1.8.0.0</AssemblyVersion>
<Version>1.8.0.0</Version>
<Authors>Apache Software Foundation, William D Cossey</Authors>
<Company>Apache Software Foundation, William D Cossey</Company>
<RepositoryUrl>https://github.com/wdcossey/Apache.NMS.ActiveMQ.NetStd</RepositoryUrl>
<PackageProjectUrl>https://github.com/wdcossey/Apache.NMS.ActiveMQ.NetStd</PackageProjectUrl>
<PackageLicenseUrl/>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageReleaseNotes>Migrated to official Apache.NMS package.</PackageReleaseNotes>
<PackageTags>Apache,NMS,Messaging,ActiveMQ,Openwire,NetStandard</PackageTags>
<AssemblyName>Apache.NMS.ActiveMQ</AssemblyName>
<PackageId>Apache.NMS.ActiveMQ.NetStd</PackageId>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>activemq-icon.png</PackageIcon>
<PackageVersion>1.8.0.0</PackageVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NETCORE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>TRACE;NETCORE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Apache.NMS" Version="1.8.0" />
<PackageReference Include="Ionic.Zlib.Core" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="assets\activemq-icon.png">
<Pack>True</Pack>
<PackagePath/>
</None>
<None Include="LICENSE.txt">
<Pack>True</Pack>
<PackagePath/>
</None>
</ItemGroup>
</Project>