Skip to content

Commit

Permalink
Bump to .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
khellang committed Nov 14, 2024
1 parent c9c819b commit 02a51c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
// "program": "${workspaceFolder}/bin/Debug/netcoreapp3.1/IfcReader.dll",
"program": "${workspaceFolder}/bin/x64/Debug/net6.0/PdfReader.exe",
"program": "${workspaceFolder}/bin/x64/Debug/net8.0/PdfReader.exe",
"args": [
"-i", "E:\\VSOUT\\PDF\\Vestbygget\\A-PL-V-200-0100 Plan-01.pdf",
"-o", "E:\\Tmp\\NovoSales\\PDF",
Expand Down
6 changes: 3 additions & 3 deletions PdfReader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>NovoRender.PDFReader</RootNamespace>
<LangVersion>latest</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand All @@ -24,7 +24,7 @@
</ItemGroup>

<Target Name="CopyNativeDLLs" AfterTargets="Publish">
<Copy SourceFiles=".\bin\x64\Release\net6.0\win-x64\gltf_api.dll" DestinationFolder="$(PublishDir)" />
<Copy SourceFiles=".\bin\x64\Release\net6.0\win-x64\gsdll64.dll" DestinationFolder="$(PublishDir)" />
<Copy SourceFiles=".\bin\x64\Release\net8.0\win-x64\gltf_api.dll" DestinationFolder="$(PublishDir)" />
<Copy SourceFiles=".\bin\x64\Release\net8.0\win-x64\gsdll64.dll" DestinationFolder="$(PublishDir)" />
</Target>
</Project>

0 comments on commit 02a51c1

Please sign in to comment.