Skip to content

Commit 647499c

Browse files
committed
Init projects
1 parent 0d5e578 commit 647499c

File tree

8 files changed

+135
-0
lines changed

8 files changed

+135
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.31702.278
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleStateMachine.StructuralSearch", "src\SimpleStateMachine.StructuralSearch\SimpleStateMachine.StructuralSearch.csproj", "{637E3AE3-3A5D-4A0A-9A67-A6EEFCE4ED7C}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleStateMachine.StructuralSearch.Tests", "src\SimpleStateMachine.StructuralSearch.Tests\SimpleStateMachine.StructuralSearch.Tests.csproj", "{CA3DDEC3-4C01-456C-8079-2CF23767466D}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleStateMachine.StructuralSearch.Sandbox", "src\SimpleStateMachine.StructuralSearch.Sandbox\SimpleStateMachine.StructuralSearch.Sandbox.csproj", "{263ABF7D-9728-4224-A584-5412E158D4BB}"
11+
EndProject
12+
Global
13+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
14+
Debug|Any CPU = Debug|Any CPU
15+
Release|Any CPU = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
18+
{F5C5620F-0273-4142-8E66-6D7C156976AF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19+
{F5C5620F-0273-4142-8E66-6D7C156976AF}.Debug|Any CPU.Build.0 = Debug|Any CPU
20+
{F5C5620F-0273-4142-8E66-6D7C156976AF}.Release|Any CPU.ActiveCfg = Release|Any CPU
21+
{F5C5620F-0273-4142-8E66-6D7C156976AF}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{637E3AE3-3A5D-4A0A-9A67-A6EEFCE4ED7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23+
{637E3AE3-3A5D-4A0A-9A67-A6EEFCE4ED7C}.Debug|Any CPU.Build.0 = Debug|Any CPU
24+
{637E3AE3-3A5D-4A0A-9A67-A6EEFCE4ED7C}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{637E3AE3-3A5D-4A0A-9A67-A6EEFCE4ED7C}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{CA3DDEC3-4C01-456C-8079-2CF23767466D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27+
{CA3DDEC3-4C01-456C-8079-2CF23767466D}.Debug|Any CPU.Build.0 = Debug|Any CPU
28+
{CA3DDEC3-4C01-456C-8079-2CF23767466D}.Release|Any CPU.ActiveCfg = Release|Any CPU
29+
{CA3DDEC3-4C01-456C-8079-2CF23767466D}.Release|Any CPU.Build.0 = Release|Any CPU
30+
{263ABF7D-9728-4224-A584-5412E158D4BB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
31+
{263ABF7D-9728-4224-A584-5412E158D4BB}.Debug|Any CPU.Build.0 = Debug|Any CPU
32+
{263ABF7D-9728-4224-A584-5412E158D4BB}.Release|Any CPU.ActiveCfg = Release|Any CPU
33+
{263ABF7D-9728-4224-A584-5412E158D4BB}.Release|Any CPU.Build.0 = Release|Any CPU
34+
EndGlobalSection
35+
GlobalSection(SolutionProperties) = preSolution
36+
HideSolutionNode = FALSE
37+
EndGlobalSection
38+
GlobalSection(ExtensibilityGlobals) = postSolution
39+
SolutionGuid = {B3846CC3-A875-4234-923A-57FA530DB15A}
40+
EndGlobalSection
41+
EndGlobal

global.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"sdk": {
3+
"version": "5.0",
4+
"rollForward": "latestMajor",
5+
"allowPrerelease": false
6+
}
7+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// See https://aka.ms/new-console-template for more information
2+
3+
using System;
4+
5+
namespace SimpleStateMachine.StructuralSearch.Sandbox
6+
{
7+
class Programm
8+
{
9+
static void Main(string[] args)
10+
{
11+
Console.WriteLine("Hello, World!");
12+
}
13+
}
14+
15+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net5.0</TargetFramework>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
8+
</PropertyGroup>
9+
10+
</Project>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net5.0</TargetFramework>
5+
<Nullable>enable</Nullable>
6+
7+
<IsPackable>false</IsPackable>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
12+
<PackageReference Include="xunit" Version="2.4.1" />
13+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
14+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
15+
<PrivateAssets>all</PrivateAssets>
16+
</PackageReference>
17+
<PackageReference Include="coverlet.collector" Version="3.0.2">
18+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
19+
<PrivateAssets>all</PrivateAssets>
20+
</PackageReference>
21+
</ItemGroup>
22+
23+
<ItemGroup>
24+
<ProjectReference Include="..\SimpleStateMachine.StructuralSearch\SimpleStateMachine.StructuralSearch.csproj" />
25+
</ItemGroup>
26+
27+
</Project>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using Xunit;
2+
3+
namespace SimpleStateMachine.StructuralSearch.Tests
4+
{
5+
6+
7+
public class UnitTest1
8+
{
9+
[Fact]
10+
public void Test1()
11+
{
12+
var t = new Class1();
13+
t.Test();
14+
}
15+
}
16+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using System;
2+
3+
namespace SimpleStateMachine.StructuralSearch
4+
{
5+
public class Class1
6+
{
7+
public void Test()
8+
{
9+
10+
}
11+
}
12+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net5.0</TargetFramework>
5+
</PropertyGroup>
6+
7+
</Project>

0 commit comments

Comments
 (0)