-
Notifications
You must be signed in to change notification settings - Fork 1
/
cloudcms-csharp-driver.csproj
36 lines (31 loc) · 1.38 KB
/
cloudcms-csharp-driver.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>CloudCMS</RootNamespace>
<PackageId>cloudcms</PackageId>
<PackageVersion>1.1.6</PackageVersion>
<Title>CloudCMS Driver</Title>
<Description>C# .NET driver for CloudCMS</Description>
<Summary>C# .NET driver for CloudCMS</Summary>
<PackageTags>cloudcms;cms;</PackageTags>
<Authors>Michael Whitman</Authors>
<RepositoryUrl>https://github.com/gitana/cloudcms-csharp-driver</RepositoryUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>1.1.0</AssemblyVersion>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">
<EmbeddedResource Include="res\**\*" />
<None Update="gitana.json" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath="" />
<None Include="icon.png" Pack="true" PackagePath="" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
</ItemGroup>
</Project>