summaryrefslogtreecommitdiff
path: root/CommandLineWrapperExample/CommandLineWrapperExample.csproj
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-01-09 21:30:49 +0800
committer魏曹先生 <1992414357@qq.com>2026-01-09 21:30:49 +0800
commit6b9268d2d88c81c18f2cc21e343d321989dad99c (patch)
tree051a3e1ca1c49a8e67a4da2c59fec576fc9e6ec5 /CommandLineWrapperExample/CommandLineWrapperExample.csproj
parent3f8e818b58127a2fad66ed67032344f553632c38 (diff)
Set up project structure and CLI integration
Diffstat (limited to 'CommandLineWrapperExample/CommandLineWrapperExample.csproj')
-rw-r--r--CommandLineWrapperExample/CommandLineWrapperExample.csproj21
1 files changed, 21 insertions, 0 deletions
diff --git a/CommandLineWrapperExample/CommandLineWrapperExample.csproj b/CommandLineWrapperExample/CommandLineWrapperExample.csproj
new file mode 100644
index 0000000..3732733
--- /dev/null
+++ b/CommandLineWrapperExample/CommandLineWrapperExample.csproj
@@ -0,0 +1,21 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <OutputPath>..\.Temp\Debug\</OutputPath>
+ <OutDir>$(OutputPath)</OutDir>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <ProjectReference
+ Include="..\CommandLineWrapper\CommandLineWrapper.csproj"
+ />
+ </ItemGroup>
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>net8.0</TargetFramework>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <Nullable>enable</Nullable>
+ </PropertyGroup>
+
+</Project>