-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathContentstack.Core.csproj
More file actions
84 lines (82 loc) · 3.46 KB
/
Copy pathContentstack.Core.csproj
File metadata and controls
84 lines (82 loc) · 3.46 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<PackageId>contentstack.csharp</PackageId>
<Authors>Contentstack</Authors>
<Description>.NET SDK for the Contentstack Content Delivery API.</Description>
<PackageVersion>$(Version)</PackageVersion>
<Owners>Contentstack</Owners>
<PackageReleaseNotes>Reference in entry Live preview support added</PackageReleaseNotes>
<Copyright>Copyright © 2012-2026 Contentstack. All Rights Reserved</Copyright>
<PackOnBuild>true</PackOnBuild>
<PackageTags>v$(Version)</PackageTags>
<PackageProjectUrl>https://github.com/contentstack/contentstack-dotnet</PackageProjectUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<ReleaseVersion>$(Version)</ReleaseVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>None</DebugType>
<DebugSymbols>false</DebugSymbols>
<WarningLevel></WarningLevel>
<WarningLevel></WarningLevel>
<NoWarn></NoWarn>
<AllowUnsafeBlocks></AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Text.Json" Version="8.0.5" />
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
<PackageReference Include="Markdig" Version="0.36.2" />
<PackageReference Include="contentstack.utils" Version="2.0.0" />
<PackageReference Include="System.Net.Http" Version="4.3.4" Condition="'$(TargetFramework)' == 'net47' Or '$(TargetFramework)' == 'net472'" />
</ItemGroup>
<ItemGroup>
<None Remove="Interfaces\" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE.txt" Pack="true" PackagePath="LICENSE.txt" />
<None Include="..\CHANGELOG.md">
<Link>CHANGELOG.md</Link>
</None>
<None Include="..\README.md" Pack="true" PackagePath="README.md">
<Link>README.md</Link>
</None>
</ItemGroup>
<ItemGroup>
<Folder Include="Endpoints\" />
<Folder Include="Internals\" />
<Folder Include="Models\" />
<Folder Include="Attributes\" />
<Folder Include="Interfaces\" />
</ItemGroup>
<ItemGroup>
<!-- Ship refresh-region.py inside the NuGet package.
The .targets file copies it into the consumer's Scripts/ folder on first build.
Customer runs: python3 Scripts/refresh-region.py (Mac/Linux)
python Scripts/refresh-region.py (Windows) -->
<Content Include="..\Scripts\refresh-region.py">
<Pack>true</Pack>
<PackagePath>contentFiles/cs/any/Scripts/refresh-region.py</PackagePath>
<BuildAction>Content</BuildAction>
<CopyToOutput>false</CopyToOutput>
</Content>
<None Include="..\build\contentstack.csharp.targets">
<Pack>true</Pack>
<PackagePath>build/contentstack.csharp.targets</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<Compile Remove="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Contentstack.Core.Tests</_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>Contentstack.Core.Unit.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>