-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTocsoft.GraphQLCodeGen.Cli.csproj
More file actions
52 lines (42 loc) · 2.03 KB
/
Tocsoft.GraphQLCodeGen.Cli.csproj
File metadata and controls
52 lines (42 loc) · 2.03 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net461;netcoreapp3.1</TargetFrameworks>
<RootNamespace>Tocsoft.GraphQLCodeGen</RootNamespace>
<LangVersion>latest</LangVersion>
<IsPackable>false</IsPackable>
<MinVerTagPrefix>v</MinVerTagPrefix>
<Feature_DllIntrospection>false</Feature_DllIntrospection>
<DefineConstants Condition="'$(Feature_DllIntrospection)' == 'true'">$(DefineConstants);DLL_INTROSPECTION</DefineConstants>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Templates\**\*.template" />
</ItemGroup>
<ItemGroup>
<None Remove="Templates\ts\Function\typescript.template" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Glob" Version="1.1.4" />
<PackageReference Include="Handlebars.Net" Version="1.10.1" />
<PackageReference Include="HotChocolate.Language" Version="11.0.9" />
<PackageReference Include="HotChocolate.Utilities.Introspection" Version="11.0.9" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="3.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="MinVer" Version="2.4.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<Target Name="PublishAll">
<ItemGroup>
<_PublishFramework Include="$(TargetFrameworks)" />
</ItemGroup>
<PropertyGroup>
<PublishDir Condition="'$(PublishDir)' == ''">bin\$(Configuration)\published\</PublishDir>
</PropertyGroup>
<MSBuild Projects="$(MSBuildProjectFile)" Targets="Publish" Properties="TargetFramework=%(_PublishFramework.Identity);PublishDir=$(PublishDir)%(_PublishFramework.Identity)\" />
</Target>
</Project>