Skip to content

Commit

Permalink
Updated to .NET 6.0.x
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffHanna committed Jan 7, 2022
1 parent d06de82 commit aec7179
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"name": ".NET Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
Expand Down
3 changes: 2 additions & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
"type": "process",
"args": [
"publish",
"--sc",
"-r",
"win-x64",
"-c",
Expand Down Expand Up @@ -71,7 +72,7 @@
{
"label": "Execute Script in 3ds Max",
"type": "shell",
"command": "${workspaceFolder}/bin/Release/netcoreapp3.0/win-x64/publish/MXSPyCOM.exe",
"command": "${workspaceFolder}/bin/Release/netcoreapp3.0/win-x64/publish/MXSPyCOM.exe",
"args": [
"-s",
"${file}"
Expand Down
3 changes: 2 additions & 1 deletion MXSPyCOM.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
{
"path": "."
}
]
],
"settings": {}
}
10 changes: 5 additions & 5 deletions MXSPyCOM.csproj
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PublishTrimmed>true</PublishTrimmed>
<TargetFramework>net6.0-windows</TargetFramework>
<PublishTrimmed>false</PublishTrimmed>
<PublishSingleFile>true</PublishSingleFile>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<UseWindowsForms>true</UseWindowsForms>
<UseWPF>false</UseWPF>
<StartupObject>MXSPyCOM.Program</StartupObject>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<Version>1.13</Version>
<Version>1.14</Version>
<Authors>Jeff Hanna</Authors>
<Company>Technical Artists Forum, Inc</Company>
<Copyright>Copyright © 2019, Technical Artists Forum, Inc. All rights reserved.</Copyright>
<Copyright>Copyright © 2021, Technical Artists Forum, Inc. All rights reserved.</Copyright>
<PackageProjectUrl>http://www.tech-artists.org</PackageProjectUrl>
<RepositoryUrl>https://github.com/techartorg/MXSPyCOM</RepositoryUrl>
<Description>A modern version of MXSCOM, to allow for editing &amp; execution of 3ds Max MaxScript and Python files from external code editors.</Description>
Expand Down

0 comments on commit aec7179

Please sign in to comment.