-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMXSPyCOM.csproj
More file actions
26 lines (23 loc) · 1.1 KB
/
MXSPyCOM.csproj
File metadata and controls
26 lines (23 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PublishTrimmed>true</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>
<Authors>Jeff Hanna</Authors>
<Company>Technical Artists Forum, Inc</Company>
<Copyright>Copyright © 2019, 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 & execution of 3ds Max MaxScript and Python files from external code editors.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="westwind.utilities" Version="3.0.24" />
</ItemGroup>
</Project>