Skip to content

Commit d588c33

Browse files
committed
missing semicolon
1 parent e34003f commit d588c33

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

Tocsoft.GraphQLCodeGen.Cli/SchemaIntrospection/DllIntrospection.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ public class DllIntrospection : IIntrosepctionProvider
1515
{
1616
public SchemaSource.SchemaTypes SchemaType => SchemaSource.SchemaTypes.Dll;
1717

18-
1918
public Task<string> LoadSchema(SchemaSource source)
2019
{
2120
var path = new Uri(typeof(Program).GetTypeInfo().Assembly.CodeBase).LocalPath;

Tocsoft.GraphQLCodeGen.MsBuild/build/Tocsoft.GraphQLCodeGen.MsBuild.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<GraphQLCodeGenAssemblyFolderRuntime Condition=" '$(MSBuildRuntimeType)' == 'Core' ">netcoreapp1.0</GraphQLCodeGenAssemblyFolderRuntime>
5-
<GraphQLCodeGenAssemblyFolderRuntime Condition=" '$(MSBuildRuntimeType)' != 'Core' ">net46</GraphQLCodeGenAssemblyFolderRuntime>
5+
<GraphQLCodeGenAssemblyFolderRuntime Condition=" '$(MSBuildRuntimeType)' != 'Core' ">net461</GraphQLCodeGenAssemblyFolderRuntime>
66
<GraphQLCodeGenAssemblyFolder Condition =" '$(GraphQLCodeGenAssemblyFolder)' == '' ">$(MSBuildThisFileDirectory)..\tasks\$(GraphQLCodeGenAssemblyFolderRuntime)</GraphQLCodeGenAssemblyFolder>
77

88
<GraphQLCodeGenAssembly>$(GraphQLCodeGenAssemblyFolder)\Tocsoft.GraphQLCodeGen.MsBuild.dll</GraphQLCodeGenAssembly>

Tocsoft.GraphQLCodeGen.MsBuild/build/Tocsoft.GraphQLCodeGen.MsBuild.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<PropertyGroup>
55
<PrepareResourcesDependsOn>
6-
GenerateGraphQLClient
6+
GenerateGraphQLClient;
77
$(PrepareResourcesDependsOn)
88
</PrepareResourcesDependsOn>
99

0 commit comments

Comments
 (0)