Skip to content

Commit

Permalink
Finish the CMD application FOINALLY
Browse files Browse the repository at this point in the history
  • Loading branch information
Kermalis committed May 17, 2023
1 parent 27f784b commit 948b22c
Show file tree
Hide file tree
Showing 4 changed files with 394 additions and 104 deletions.
14 changes: 13 additions & 1 deletion MIDIProgramSplitter.CMD/MIDIProgramSplitter.CMD.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
Expand All @@ -8,6 +8,18 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>

<RootNamespace>MIDIProgramSplitter.CMD</RootNamespace>

<Configurations>Debug;Release;Release_Win64</Configurations>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Release_Win64'">
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>false</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishReadyToRun>true</PublishReadyToRun>
<DebugSymbols>false</DebugSymbols>
<DebugType>None</DebugType>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading

0 comments on commit 948b22c

Please sign in to comment.