Skip to content

Commit a599d26

Browse files
initialized
1 parent 84303e9 commit a599d26

24 files changed

+559
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
bin/
2+
obj/
3+
/packages/
4+
riderModule.iml
5+
/_ReSharper.Caches/

.idea/.idea.BBM486Project/.idea/.gitignore

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.BBM486Project/.idea/encodings.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.BBM486Project/.idea/indexLayout.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/.idea.BBM486Project/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

BBM486Project.sln

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Service", "Service\Service.csproj", "{9C299E2F-147B-4ADD-BDF4-12E751014734}"
4+
EndProject
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DataAccess", "DataAccess\DataAccess.csproj", "{E6C81248-8400-4249-8C06-991B08A8ACBF}"
6+
EndProject
7+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Entities", "Entities\Entities.csproj", "{9A8089E0-FD90-44E0-A4C3-9A015987968D}"
8+
EndProject
9+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsApp", "WindowsFormsApp\WindowsFormsApp.csproj", "{DD280ADE-41A1-4D7E-B480-BAC5B6AACD5C}"
10+
EndProject
11+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebAPI", "WebAPI\WebAPI.csproj", "{32745145-4C4A-4830-B73B-8ADAC7508C6D}"
12+
EndProject
13+
Global
14+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
15+
Debug|Any CPU = Debug|Any CPU
16+
Release|Any CPU = Release|Any CPU
17+
EndGlobalSection
18+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
19+
{9C299E2F-147B-4ADD-BDF4-12E751014734}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
20+
{9C299E2F-147B-4ADD-BDF4-12E751014734}.Debug|Any CPU.Build.0 = Debug|Any CPU
21+
{9C299E2F-147B-4ADD-BDF4-12E751014734}.Release|Any CPU.ActiveCfg = Release|Any CPU
22+
{9C299E2F-147B-4ADD-BDF4-12E751014734}.Release|Any CPU.Build.0 = Release|Any CPU
23+
{E6C81248-8400-4249-8C06-991B08A8ACBF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{E6C81248-8400-4249-8C06-991B08A8ACBF}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{E6C81248-8400-4249-8C06-991B08A8ACBF}.Release|Any CPU.ActiveCfg = Release|Any CPU
26+
{E6C81248-8400-4249-8C06-991B08A8ACBF}.Release|Any CPU.Build.0 = Release|Any CPU
27+
{9A8089E0-FD90-44E0-A4C3-9A015987968D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
28+
{9A8089E0-FD90-44E0-A4C3-9A015987968D}.Debug|Any CPU.Build.0 = Debug|Any CPU
29+
{9A8089E0-FD90-44E0-A4C3-9A015987968D}.Release|Any CPU.ActiveCfg = Release|Any CPU
30+
{9A8089E0-FD90-44E0-A4C3-9A015987968D}.Release|Any CPU.Build.0 = Release|Any CPU
31+
{DD280ADE-41A1-4D7E-B480-BAC5B6AACD5C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
32+
{DD280ADE-41A1-4D7E-B480-BAC5B6AACD5C}.Debug|Any CPU.Build.0 = Debug|Any CPU
33+
{DD280ADE-41A1-4D7E-B480-BAC5B6AACD5C}.Release|Any CPU.ActiveCfg = Release|Any CPU
34+
{DD280ADE-41A1-4D7E-B480-BAC5B6AACD5C}.Release|Any CPU.Build.0 = Release|Any CPU
35+
{32745145-4C4A-4830-B73B-8ADAC7508C6D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
36+
{32745145-4C4A-4830-B73B-8ADAC7508C6D}.Debug|Any CPU.Build.0 = Debug|Any CPU
37+
{32745145-4C4A-4830-B73B-8ADAC7508C6D}.Release|Any CPU.ActiveCfg = Release|Any CPU
38+
{32745145-4C4A-4830-B73B-8ADAC7508C6D}.Release|Any CPU.Build.0 = Release|Any CPU
39+
EndGlobalSection
40+
EndGlobal

DataAccess/Class1.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using System;
2+
3+
namespace DataAccess
4+
{
5+
public class Class1
6+
{
7+
}
8+
}

DataAccess/DataAccess.csproj

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>netstandard2.0</TargetFramework>
5+
</PropertyGroup>
6+
7+
</Project>

Entities/Class1.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using System;
2+
3+
namespace Entities
4+
{
5+
public class Class1
6+
{
7+
}
8+
}

Entities/Entities.csproj

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>netstandard2.0</TargetFramework>
5+
</PropertyGroup>
6+
7+
</Project>

Service/Class1.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using System;
2+
3+
namespace Service
4+
{
5+
public class Class1
6+
{
7+
}
8+
}

Service/Service.csproj

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>netstandard2.0</TargetFramework>
5+
</PropertyGroup>
6+
7+
</Project>

WebAPI/Class1.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using System;
2+
3+
namespace WebAPI
4+
{
5+
public class Class1
6+
{
7+
}
8+
}

WebAPI/WebAPI.csproj

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>netcoreapp3.1</TargetFramework>
5+
</PropertyGroup>
6+
7+
</Project>

WindowsFormsApp/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
5+
</startup>
6+
</configuration>

WindowsFormsApp/Form1.Designer.cs

Lines changed: 40 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WindowsFormsApp/Form1.cs

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Data;
5+
using System.Drawing;
6+
using System.Linq;
7+
using System.Text;
8+
using System.Threading.Tasks;
9+
using System.Windows.Forms;
10+
11+
namespace WindowsFormsApp
12+
{
13+
public partial class Form1 : Form
14+
{
15+
public Form1()
16+
{
17+
InitializeComponent();
18+
}
19+
}
20+
}

WindowsFormsApp/Program.cs

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using System.Windows.Forms;
6+
7+
namespace WindowsFormsApp
8+
{
9+
static class Program
10+
{
11+
/// <summary>
12+
/// The main entry point for the application.
13+
/// </summary>
14+
[STAThread]
15+
static void Main()
16+
{
17+
Application.EnableVisualStyles();
18+
Application.SetCompatibleTextRenderingDefault(false);
19+
Application.Run(new Form1());
20+
}
21+
}
22+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("WindowsFormsApp")]
9+
[assembly: AssemblyDescription("")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("")]
12+
[assembly: AssemblyProduct("WindowsFormsApp")]
13+
[assembly: AssemblyCopyright("Copyright © 2021")]
14+
[assembly: AssemblyTrademark("")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("DD280ADE-41A1-4D7E-B480-BAC5B6AACD5C")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
// You can specify all the values or you can default the Build and Revision Numbers
33+
// by using the '*' as shown below:
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]

WindowsFormsApp/Properties/Resources.Designer.cs

Lines changed: 69 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)