Skip to content

Commit d0204e0

Browse files
author
Robert Blackwell
committed
Initial public release
0 parents  commit d0204e0

44 files changed

Lines changed: 1198 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cyz2Json.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.5.33627.172
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cyz2Json", "Cyz2Json\Cyz2Json.csproj", "{1285879E-74BC-4CE8-A897-03A7DEF8E832}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{1285879E-74BC-4CE8-A897-03A7DEF8E832}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{1285879E-74BC-4CE8-A897-03A7DEF8E832}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{1285879E-74BC-4CE8-A897-03A7DEF8E832}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{1285879E-74BC-4CE8-A897-03A7DEF8E832}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {6AF960FA-80E6-4612-9F02-DB0012ADF571}
24+
EndGlobalSection
25+
EndGlobal

Cyz2Json/Cyz2Json.csproj

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net7.0</TargetFramework>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
12+
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
13+
</ItemGroup>
14+
15+
<ItemGroup>
16+
<Reference Include="CyzFile">
17+
<HintPath>lib\CyzFile.dll</HintPath>
18+
</Reference>
19+
</ItemGroup>
20+
21+
</Project>

0 commit comments

Comments
 (0)