-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContentstack.Utils.csproj
More file actions
45 lines (41 loc) · 1.73 KB
/
Contentstack.Utils.csproj
File metadata and controls
45 lines (41 loc) · 1.73 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net47;net472;</TargetFrameworks>
<PackageId>contentstack.utils</PackageId>
<RootNamespace>Contentstack.Utils</RootNamespace>
<Authors>Contentstack</Authors>
<NeutralLanguage>en-US</NeutralLanguage>
<Description>Utils .NET SDK for the Contentstack.</Description> <ReleaseVersion>0.1.0</ReleaseVersion>
<PackageVersion>$(Version)</PackageVersion>
<Owners>Contentstack</Owners>
<PackOnBuild>true</PackOnBuild>
<PackageTags>v$(Version)</PackageTags>
<PackageReleaseNotes>Json RTE content to Html content support added</PackageReleaseNotes>
<Copyright>Copyright © 2012-2021 Contentstack. All Rights Reserved</Copyright>
<PackageProjectUrl>https://github.com/contentstack/contentstack-utils-dotnet</PackageProjectUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<ReleaseVersion>$(Version)</ReleaseVersion>
<Title>Contentstack Utils</Title>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE.txt" Pack="true" PackagePath="LICENSE.txt" />
<None Include="..\CHANGELOG.md">
<Link>CHANGELOG.md</Link>
</None>
<None Include="..\README.md">
<Link>README.md</Link>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Interfaces\" />
<Folder Include="Models\" />
<Folder Include="Enums\" />
<Folder Include="Extensions\" />
<Folder Include="Converters\" />
<Folder Include="Constants\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.11.46" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
</ItemGroup>
</Project>