Compare commits
2 Commits
master
...
Colins-Bra
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a3eb5c7676 | ||
|
|
265609c8fb |
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Auto detect text files and perform LF normalization
|
||||||
|
* text=auto
|
||||||
2
README.md
Normal file
2
README.md
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# HobbyProjectGenerator
|
||||||
|
A web app that curates recommendations for hobbyists and project enthusiasts.
|
||||||
@ -22,6 +22,8 @@ namespace TeamHobby.HobbyProjectGenerator.Main
|
|||||||
// Logger log = new Logger();
|
// Logger log = new Logger();
|
||||||
//Logger.PrintTest();
|
//Logger.PrintTest();
|
||||||
|
|
||||||
|
LoggingManager logger = new LoggingManager();
|
||||||
|
logger.CreateLog("Testing logs from main Controller");
|
||||||
// Loop login terminal
|
// Loop login terminal
|
||||||
bool mainMenu = true;
|
bool mainMenu = true;
|
||||||
|
|
||||||
@ -30,6 +32,8 @@ namespace TeamHobby.HobbyProjectGenerator.Main
|
|||||||
{
|
{
|
||||||
// Create credentials object
|
// Create credentials object
|
||||||
GetCredentials credentials = new GetCredentials();
|
GetCredentials credentials = new GetCredentials();
|
||||||
|
logger.CreateLog("Testing credentials from main Controller");
|
||||||
|
|
||||||
|
|
||||||
// Get DB credentials ***Both values currently hard coded, will update to user input later on.***
|
// Get DB credentials ***Both values currently hard coded, will update to user input later on.***
|
||||||
string dbUserName = "root";
|
string dbUserName = "root";
|
||||||
|
|||||||
@ -1,23 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
|
|
||||||
<PropertyGroup>
|
|
||||||
<OutputType>Exe</OutputType>
|
|
||||||
<TargetFramework>net6.0</TargetFramework>
|
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
||||||
<Platforms>AnyCPU</Platforms>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<PackageReference Include="Microsoft.Data.SqlClient" Version="4.0.0" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\TeamHobby.HobbyProjectGenerator.Archive\TeamHobby.HobbyProjectGenerator.Archive.csproj" />
|
|
||||||
<ProjectReference Include="..\TeamHobby.HobbyProjectGenerator.DataAccess\TeamHobby.HobbyProjectGenerator.DataAccess.csproj" />
|
|
||||||
<ProjectReference Include="..\TeamHobby.HobbyProjectGenerator.Logging\TeamHobby.HobbyProjectGenerator.Logging.csproj" />
|
|
||||||
<ProjectReference Include="..\TeamHobby.HobbyProjectGenerator.UserManagement\TeamHobby.HobbyProjectGenerator.UserManagement.csproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
|
||||||
Loading…
Reference in New Issue
Block a user