Skip to content
This repository was archived by the owner on Jan 21, 2022. It is now read-only.

Commit eda846c

Browse files
committed
Add View and ViewModel projects
1 parent 298dcea commit eda846c

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

Model/Model.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>

StudentMatching.sln

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.31624.102
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "View", "View\View.csproj", "{9D1C5F67-546F-4B72-83B1-D1EAC6461294}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "View", "View\View.csproj", "{9D1C5F67-546F-4B72-83B1-D1EAC6461294}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Model", "Model\Model.csproj", "{5BC00D20-975B-4F0C-92EC-37FB14FFDE87}"
9+
EndProject
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ViewModel", "ViewModel\ViewModel.csproj", "{5A47BFDB-9F32-48CF-BDA8-6FF878C404E0}"
711
EndProject
812
Global
913
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -15,6 +19,14 @@ Global
1519
{9D1C5F67-546F-4B72-83B1-D1EAC6461294}.Debug|Any CPU.Build.0 = Debug|Any CPU
1620
{9D1C5F67-546F-4B72-83B1-D1EAC6461294}.Release|Any CPU.ActiveCfg = Release|Any CPU
1721
{9D1C5F67-546F-4B72-83B1-D1EAC6461294}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{5BC00D20-975B-4F0C-92EC-37FB14FFDE87}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
23+
{5BC00D20-975B-4F0C-92EC-37FB14FFDE87}.Debug|Any CPU.Build.0 = Debug|Any CPU
24+
{5BC00D20-975B-4F0C-92EC-37FB14FFDE87}.Release|Any CPU.ActiveCfg = Release|Any CPU
25+
{5BC00D20-975B-4F0C-92EC-37FB14FFDE87}.Release|Any CPU.Build.0 = Release|Any CPU
26+
{5A47BFDB-9F32-48CF-BDA8-6FF878C404E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27+
{5A47BFDB-9F32-48CF-BDA8-6FF878C404E0}.Debug|Any CPU.Build.0 = Debug|Any CPU
28+
{5A47BFDB-9F32-48CF-BDA8-6FF878C404E0}.Release|Any CPU.ActiveCfg = Release|Any CPU
29+
{5A47BFDB-9F32-48CF-BDA8-6FF878C404E0}.Release|Any CPU.Build.0 = Release|Any CPU
1830
EndGlobalSection
1931
GlobalSection(SolutionProperties) = preSolution
2032
HideSolutionNode = FALSE

ViewModel/ViewModel.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>

0 commit comments

Comments
 (0)