Skip to content

Commit

Permalink
Use official 3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
joemcbride committed Sep 2, 2020
1 parent 625069e commit 2d6539a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GraphQL.NewtonsoftJson" Version="3.0.0-preview-1648" />
<PackageReference Include="GraphQL.NewtonsoftJson" Version="3.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" />
<PackageReference Include="Shouldly" Version="3.0.2" />
<PackageReference Include="xunit" Version="2.4.1" />
Expand Down
2 changes: 1 addition & 1 deletion src/GraphQL.Authorization/GraphQL.Authorization.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="GraphQL" Version="3.0.0-preview-1648" />
<PackageReference Include="GraphQL" Version="3.0.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/Harness/Harness.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="GraphQL" Version="3.0.0-preview-1712" />
<PackageReference Include="GraphQL" Version="3.0.0" />
<PackageReference Include="GraphQL.Server.Transports.AspNetCore.SystemTextJson" Version="3.5.0-alpha0072" />
<PackageReference Include="GraphQL.Server.Ui.GraphiQL" Version="3.5.0-alpha0072" />
<PackageReference Include="GraphQL.Server.Transports.AspNetCore" Version="3.5.0-alpha0072" />
Expand Down
2 changes: 1 addition & 1 deletion tools/tasks/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const CI = process.env.CI && process.env.CI.toString().toLowerCase() === 'true';

const artifacts = path.resolve('./artifacts');

const versionSuffix = '-preview-'
const versionSuffix = ''

export default {
appVeyorJobId,
Expand Down
6 changes: 3 additions & 3 deletions tools/tasks/test.dotnet.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ export default function testDotnet() {
const deferred = new Deferred();

const platform = process.platform === 'darwin'
? '-f netcoreapp2.2'
? '-f netcoreapp3.1'
: '';
const test = `dotnet test ${platform} -c ${settings.target}`;

pushd('src/GraphQL.Authorization.Tests')
console.log(test);

exec(test, {async:true}, (code, stdout, stderr)=> {
if(code === 0) {
exec(test, { async: true }, (code, stdout, stderr) => {
if (code === 0) {
deferred.resolve();
} else {
deferred.reject(stderr);
Expand Down

0 comments on commit 2d6539a

Please sign in to comment.