forked from graphql-dotnet/graphql-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroot.props
38 lines (35 loc) · 1.51 KB
/
root.props
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
<Project>
<PropertyGroup>
<Authors>Deinok,Alexander Rose,graphql-dotnet,fabio-s-franco</Authors>
<Description>A GraphQL Client for .NET Standard</Description>
<GenerateAssemblyInfo>True</GenerateAssemblyInfo>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<LangVersion>8.0</LangVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<NoWarn>$(NoWarn);CS1591;NU5048;NU5105;NU5125</NoWarn>
<Nullable>annotations</Nullable>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://github.com/fabio-s-franco/graphql-client</PackageProjectUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>GraphQL</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/fabio-s-franco/graphql-client</RepositoryUrl>
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Content Include="$(MSBuildThisFileDirectory)/LICENSE.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>true</Pack>
<PackagePath>LICENSE.txt</PackagePath>
<Visible>false</Visible>
</Content>
<Content Include="$(MSBuildThisFileDirectory)/assets/logo.64x64.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<Pack>true</Pack>
<PackagePath>icon.png</PackagePath>
<Visible>false</Visible>
</Content>
</ItemGroup>
</Project>