mirror of
https://github.com/yaakov-h/Shamir.git
synced 2025-01-18 16:56:33 +00:00
Initial project structure
This commit is contained in:
parent
1fd7b8fae8
commit
ec19c1d01a
4 changed files with 58 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bin/
|
||||||
|
obj/
|
12
src/console/Program.cs
Normal file
12
src/console/Program.cs
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Shamir
|
||||||
|
{
|
||||||
|
class Program
|
||||||
|
{
|
||||||
|
static void Main(string[] args)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Hello World!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
10
src/console/shamir.csproj
Normal file
10
src/console/shamir.csproj
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net5.0</TargetFramework>
|
||||||
|
<RootNamespace>Shamir</RootNamespace>
|
||||||
|
<OutputPath>..\..\bin</OutputPath>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
34
src/shamir.sln
Normal file
34
src/shamir.sln
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 16
|
||||||
|
VisualStudioVersion = 16.0.30114.105
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "shamir", "console\shamir.csproj", "{4AE92C28-7380-4012-B40F-6CBD424991B8}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Debug|x64 = Debug|x64
|
||||||
|
Debug|x86 = Debug|x86
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
Release|x64 = Release|x64
|
||||||
|
Release|x86 = Release|x86
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{4AE92C28-7380-4012-B40F-6CBD424991B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{4AE92C28-7380-4012-B40F-6CBD424991B8}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{4AE92C28-7380-4012-B40F-6CBD424991B8}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||||
|
{4AE92C28-7380-4012-B40F-6CBD424991B8}.Debug|x64.Build.0 = Debug|Any CPU
|
||||||
|
{4AE92C28-7380-4012-B40F-6CBD424991B8}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{4AE92C28-7380-4012-B40F-6CBD424991B8}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
|
{4AE92C28-7380-4012-B40F-6CBD424991B8}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{4AE92C28-7380-4012-B40F-6CBD424991B8}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{4AE92C28-7380-4012-B40F-6CBD424991B8}.Release|x64.ActiveCfg = Release|Any CPU
|
||||||
|
{4AE92C28-7380-4012-B40F-6CBD424991B8}.Release|x64.Build.0 = Release|Any CPU
|
||||||
|
{4AE92C28-7380-4012-B40F-6CBD424991B8}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{4AE92C28-7380-4012-B40F-6CBD424991B8}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
Loading…
Reference in a new issue