Skip to content

Commit

Permalink
Add project files.
Browse files Browse the repository at this point in the history
  • Loading branch information
lbickel authored and lbickel committed Mar 2, 2024
1 parent 280922d commit fb4a702
Show file tree
Hide file tree
Showing 84 changed files with 75,651 additions and 0 deletions.
25 changes: 25 additions & 0 deletions SoftwareTracker.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34616.47
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SoftwareTracker", "SoftwareTracker\SoftwareTracker.csproj", "{9E3527BE-AECF-477D-B288-E5FE666CC55F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{9E3527BE-AECF-477D-B288-E5FE666CC55F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9E3527BE-AECF-477D-B288-E5FE666CC55F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9E3527BE-AECF-477D-B288-E5FE666CC55F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9E3527BE-AECF-477D-B288-E5FE666CC55F}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {DD2F4807-779A-47B4-8FC0-BC03F5E1BAF0}
EndGlobalSection
EndGlobal
3 changes: 3 additions & 0 deletions SoftwareTracker/Areas/Identity/Pages/_ViewStart.cshtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@{
Layout = "/Views/Shared/_Layout.cshtml";
}
32 changes: 32 additions & 0 deletions SoftwareTracker/Controllers/HomeController.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
using Microsoft.AspNetCore.Mvc;
using SoftwareTracker.Models;
using System.Diagnostics;

namespace SoftwareTracker.Controllers
{
public class HomeController : Controller
{
private readonly ILogger<HomeController> _logger;

public HomeController(ILogger<HomeController> logger)
{
_logger = logger;
}

public IActionResult Index()
{
return View();
}

public IActionResult Privacy()
{
return View();
}

[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}
}
13 changes: 13 additions & 0 deletions SoftwareTracker/Data/ApplicationDbContext.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;

namespace SoftwareTracker.Data
{
public class ApplicationDbContext : IdentityDbContext
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit fb4a702

Please sign in to comment.