2025.6.1
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
# CS application
|
||||
project(ConsoleApplication LANGUAGES CSharp)
|
||||
|
||||
set(CS_SOURCES
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Program.cs
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/Properties/AssemblyInfo.cs
|
||||
)
|
||||
|
||||
add_executable(ConsoleApplication ${CS_SOURCES})
|
||||
|
||||
target_link_libraries(ConsoleApplication PRIVATE NetWrapper)
|
||||
|
||||
set_target_properties(ConsoleApplication PROPERTIES
|
||||
VS_DOTNET_TARGET_FRAMEWORK_VERSION "v4.0"
|
||||
LINKER_LANGUAGE CSharp
|
||||
)
|
||||
@@ -1,6 +1,6 @@
|
||||
/***********************************************************************************************************************
|
||||
*
|
||||
* Copyright (c) 2010 - 2022 by Tech Soft 3D, Inc.
|
||||
* Copyright (c) 2010 - 2023 by Tech Soft 3D, Inc.
|
||||
* The information contained herein is confidential and proprietary to Tech Soft 3D, Inc., and considered a trade secret
|
||||
* as defined under civil and criminal statutes. Tech Soft 3D shall pursue its civil and criminal remedies in the event
|
||||
* of unauthorized use or misappropriation of its trade secrets. Use of this information by anyone other than authorized
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
/***********************************************************************************************************************
|
||||
*
|
||||
* Copyright (c) 2010 - 2022 by Tech Soft 3D, Inc.
|
||||
* Copyright (c) 2010 - 2023 by Tech Soft 3D, Inc.
|
||||
* The information contained herein is confidential and proprietary to Tech Soft 3D, Inc., and considered a trade secret
|
||||
* as defined under civil and criminal statutes. Tech Soft 3D shall pursue its civil and criminal remedies in the event
|
||||
* of unauthorized use or misappropriation of its trade secrets. Use of this information by anyone other than authorized
|
||||
@@ -22,7 +22,7 @@ using System.Runtime.InteropServices;
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("Tech Soft 3D")]
|
||||
[assembly: AssemblyProduct("ConsoleApplication")]
|
||||
[assembly: AssemblyCopyright("Copyright (c) 2010 - 2022 by Tech Soft 3D, Inc.")]
|
||||
[assembly: AssemblyCopyright("Copyright (c) 2010 - 2023 by Tech Soft 3D, Inc.")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user