Skip to content
Snippets Groups Projects
Commit efebc2f3 authored by Callum Inglis's avatar Callum Inglis
Browse files

Fix Solution Filenames. Add EntityFramework SQL Framework

parent 797e430c
No related branches found
No related tags found
No related merge requests found
......@@ -3,11 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31702.278
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Public API.Server", "Public API\Server\Public API.Server.csproj", "{9D81A5FB-CCAA-4722-A0AF-D0D15CC3E947}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Public_API.Server", "Public API\Server\Public_API.Server.csproj", "{9D81A5FB-CCAA-4722-A0AF-D0D15CC3E947}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Public API.Client", "Public API\Client\Public API.Client.csproj", "{215EB538-6432-403F-9329-294FCBD6E68B}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Public_API.Client", "Public API\Client\Public_API.Client.csproj", "{215EB538-6432-403F-9329-294FCBD6E68B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Public API.Shared", "Public API\Shared\Public API.Shared.csproj", "{321332A1-A904-4529-B752-DA83AEC0F043}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Public_API.Shared", "Public API\Shared\Public_API.Shared.csproj", "{321332A1-A904-4529-B752-DA83AEC0F043}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
......
......@@ -14,7 +14,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Shared\Public API.Shared.csproj" />
<ProjectReference Include="..\Shared\Public_API.Shared.csproj" />
</ItemGroup>
</Project>
{
"version": 1,
"isRoot": true,
"tools": {
"dotnet-ef": {
"version": "5.0.11",
"commands": [
"dotnet-ef"
]
}
}
}
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
......@@ -8,11 +8,12 @@
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="3.2.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.11" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Client\Public API.Client.csproj" />
<ProjectReference Include="..\Shared\Public API.Shared.csproj" />
<ProjectReference Include="..\Client\Public_API.Client.csproj" />
<ProjectReference Include="..\Shared\Public_API.Shared.csproj" />
</ItemGroup>
......
......@@ -4,4 +4,8 @@
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.11" />
</ItemGroup>
</Project>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment