Skip to content

Commit 582416b

Browse files
committed
Initial commit 1: C# base files
0 parents  commit 582416b

File tree

4 files changed

+52
-0
lines changed

4 files changed

+52
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
bin/
2+
obj/
3+
*.suo

DenizenModelsConverter.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.1.32319.34
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DenizenModelsConverter", "DenizenModelsConverter\DenizenModelsConverter.csproj", "{0BDC209C-275E-4D5D-A183-0A680EDE1FBF}"
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+
{0BDC209C-275E-4D5D-A183-0A680EDE1FBF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{0BDC209C-275E-4D5D-A183-0A680EDE1FBF}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{0BDC209C-275E-4D5D-A183-0A680EDE1FBF}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{0BDC209C-275E-4D5D-A183-0A680EDE1FBF}.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 = {9D557B5E-FFF9-4D42-85CB-0648239D2EE4}
24+
EndGlobalSection
25+
EndGlobal
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net6.0</TargetFramework>
6+
</PropertyGroup>
7+
8+
</Project>

DenizenModelsConverter/Program.cs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace DenizenModelsConverter
8+
{
9+
public static class Program
10+
{
11+
public static void Main(string[] args)
12+
{
13+
// TODO
14+
}
15+
}
16+
}

0 commit comments

Comments
 (0)