initial struct

This commit is contained in:
femsci 2023-07-28 21:21:55 +02:00
commit f4eeac5aab
Signed by: femsci
GPG key ID: 08F7911F0E650C67
6 changed files with 61 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
**/bin/
**/obj/

3
README.md Normal file
View file

@ -0,0 +1,3 @@
# umogen
Polish civic-law contract generator.

34
Umogen.sln Normal file
View file

@ -0,0 +1,34 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{B7440F94-8316-4B14-BE08-9D71525FC269}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Femsci.Umogen.Cli", "src\Femsci.Umogen.Cli\Femsci.Umogen.Cli.csproj", "{FDEFB1E7-EF96-4163-9FE2-E2E125BEDEA3}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Femsci.Umogen.Lib", "src\Femsci.Umogen.Lib\Femsci.Umogen.Lib.csproj", "{A5D64FC4-30D6-489C-90B1-B9BE0A4A78A5}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FDEFB1E7-EF96-4163-9FE2-E2E125BEDEA3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FDEFB1E7-EF96-4163-9FE2-E2E125BEDEA3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FDEFB1E7-EF96-4163-9FE2-E2E125BEDEA3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FDEFB1E7-EF96-4163-9FE2-E2E125BEDEA3}.Release|Any CPU.Build.0 = Release|Any CPU
{A5D64FC4-30D6-489C-90B1-B9BE0A4A78A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{A5D64FC4-30D6-489C-90B1-B9BE0A4A78A5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{A5D64FC4-30D6-489C-90B1-B9BE0A4A78A5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{A5D64FC4-30D6-489C-90B1-B9BE0A4A78A5}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{FDEFB1E7-EF96-4163-9FE2-E2E125BEDEA3} = {B7440F94-8316-4B14-BE08-9D71525FC269}
{A5D64FC4-30D6-489C-90B1-B9BE0A4A78A5} = {B7440F94-8316-4B14-BE08-9D71525FC269}
EndGlobalSection
EndGlobal

View file

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View file

@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");

View file

@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>