-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathAppAny.HotChocolate.FluentValidation.csproj
More file actions
53 lines (47 loc) · 1.89 KB
/
AppAny.HotChocolate.FluentValidation.csproj
File metadata and controls
53 lines (47 loc) · 1.89 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/appany/AppAny.HotChocolate.FluentValidation</RepositoryUrl>
<PackageProjectUrl>https://github.com/appany/AppAny.HotChocolate.FluentValidation</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Copyright>Copyright ©2021 AppAny</Copyright>
<Authors>sergeyshaykhullin</Authors>
<Description>HotChocolate GraphQL FluentValidation integration</Description>
<PackageTags>.NET Core;ASP.NET Core;HotChocolate;FluentValidation</PackageTags>
</PropertyGroup>
<!-- <ItemGroup Label="Usings">-->
<!-- <Using Include="System" />-->
<!-- <Using Include="System.Threading.Tasks" />-->
<!-- <Using Include="HotChocolate" />-->
<!-- <Using Include="HotChocolate.Types" />-->
<!-- <Using Include="HotChocolate.Resolvers" />-->
<!-- <Using Include="FluentValidation" />-->
<!-- <Using Include="FluentValidation.Results" />-->
<!-- </ItemGroup>-->
<ItemGroup Label="Packages">
<PackageReference Include="FluentValidation" Version="11.11.0" />
<PackageReference Include="HotChocolate.Execution" Version="15.1.3" />
</ItemGroup>
<ItemGroup Label="Assets">
<None Include="../assets/logo.png">
<Pack>true</Pack>
<Visible>false</Visible>
<PackagePath />
</None>
<None Include="../LICENSE">
<Pack>true</Pack>
<Visible>false</Visible>
<PackagePath />
</None>
</ItemGroup>
</Project>