Skip to content

Commit

Permalink
updating packages and .NET version
Browse files Browse the repository at this point in the history
  • Loading branch information
agracio committed Oct 18, 2024
1 parent 7c81034 commit c508d0b
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var net = process.argv[2];
var framework = net.charAt(0).toUpperCase() + net.substr(1);
var namespace = 'QuickStart.' + framework;
if(net === 'core') net = '';
var version = net == 'standard' ? '2.0' : '7.0'
var version = net == 'standard' ? '2.0' : '8.0'

const baseNetAppPath = path.join(__dirname, '/src/'+ namespace +'/bin/Debug/net'+ net + version);

Expand Down Expand Up @@ -98,7 +98,6 @@ getInlinePerson({name: 'Peter Smith', email: '[email protected]
console.log();
});


console.log();
console.log('### Calling local methods from ' + namespace +'.dll')
console.log();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
],
"license": "MIT",
"dependencies": {
"edge-js": "^22.1.2"
"edge-js": "^22.9.0"
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/QuickStart.Core/QuickStart.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<PreserveCompilationContext>true</PreserveCompilationContext>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
Expand Down
1 change: 0 additions & 1 deletion src/shared/LocalMethods.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using System;
using System.Collections.Generic;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;

Expand Down

0 comments on commit c508d0b

Please sign in to comment.