-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathOur.Umbraco.GraphQL.csproj
executable file
·46 lines (41 loc) · 2.1 KB
/
Our.Umbraco.GraphQL.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<title>GraphQL for Umbraco</title>
<authors>Umbraco Community</authors>
<owners>umbraco-community</owners>
<description>A GraphQL server for Umbraco</description>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<packageProjectUrl>https://github.com/umbraco-community/umbraco-graphql</packageProjectUrl>
<packageTags>umbraco umbracocms graphql</packageTags>
<copyright>Copyright © 2023 Rasmus John Pedersen, Andrew McKaskill</copyright>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<versionPrefix>11.0.0-alpha001</versionPrefix>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>Our.Umbraco.GraphQL</AssemblyName>
<RootNamespace>Our.Umbraco.GraphQL</RootNamespace>
<UIRoot>Web\UI\</UIRoot>
<DefaultItemExcludes>$(DefaultItemExcludes);$(UIRoot)node_modules\**;$(UIRoot).sass-cache\**</DefaultItemExcludes>
</PropertyGroup>
<ItemGroup>
<None Include="$(UIRoot)**" Exclude="$(UIRoot)node_modules\**;$(UIRoot).sass-cache\**" Pack="false" />
</ItemGroup>
<ItemGroup>
<None Include="tools\**" Pack="True" PackagePath="tools\" />
<None Include="$(UIRoot)dist\**" Pack="True" PackagePath="content\" />
<None Include="content\**" Pack="True" PackagePath="content\" />
<None Include="readme.txt" Pack="True" PackagePath="" />
<None Include="..\..\LICENSE" Pack="True" PackagePath="" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="GraphQL.Server.Transports.AspNetCore.SystemTextJson" Version="5.2.2" />
<PackageReference Include="GraphQL.Server.Ui.Playground" Version="6.1.1" />
<PackageReference Include="Umbraco.Cms.Core" Version="10.3.2" />
<PackageReference Include="Umbraco.Cms.Web.BackOffice" Version="10.3.2" />
<PackageReference Include="Umbraco.Cms.Web.Website" Version="10.3.2" />
</ItemGroup>
</Project>