-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathMXSPyCOM.csproj
26 lines (23 loc) · 1.09 KB
/
MXSPyCOM.csproj
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">
<PropertyGroup>
<OutputType>Exe</OutputType>
<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.14</Version>
<Authors>Jeff Hanna</Authors>
<Company>Technical Artists Forum, Inc</Company>
<Copyright>Copyright © 2022, 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>