New fie upload

This commit is contained in:
Xandra10101 2020-10-30 13:04:01 +01:00 committed by GitHub
parent 95998f4dbc
commit 9aba49f827
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 249 additions and 249 deletions

View File

@ -1,24 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk.Web"> <Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup> <PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework> <TargetFramework>netcoreapp3.1</TargetFramework>
<UserSecretsId>a34cc255-9b57-4681-8451-8df6c989a5ef</UserSecretsId> <UserSecretsId>a34cc255-9b57-4681-8451-8df6c989a5ef</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS> <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.9" /> <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.10.9" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Folder Include="Controllers\" /> <Folder Include="Controllers\" />
<Folder Include="Models\" /> <Folder Include="Models\" />
<Folder Include="Data\" /> <Folder Include="Data\" />
<Folder Include="Utils\" /> <Folder Include="Utils\" />
<Folder Include="Repositories\Implementations\" /> <Folder Include="Repositories\Implementations\" />
<Folder Include="Repositories\Interfaces\" /> <Folder Include="Repositories\Interfaces\" />
<Folder Include="Views\" /> <Folder Include="Views\" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup> <PropertyGroup>
<ActiveDebugProfile>Docker</ActiveDebugProfile> <ActiveDebugProfile>Docker</ActiveDebugProfile>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@ -1,22 +1,22 @@
#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. #See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging.
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-buster-slim AS base
WORKDIR /app WORKDIR /app
EXPOSE 80 EXPOSE 80
EXPOSE 443 EXPOSE 443
FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build
WORKDIR /src WORKDIR /src
COPY ["AlfaPrentice/AlfaPrentice.csproj", "AlfaPrentice/"] COPY ["AlfaPrentice/AlfaPrentice.csproj", "AlfaPrentice/"]
RUN dotnet restore "AlfaPrentice/AlfaPrentice.csproj" RUN dotnet restore "AlfaPrentice/AlfaPrentice.csproj"
COPY . . COPY . .
WORKDIR "/src/AlfaPrentice" WORKDIR "/src/AlfaPrentice"
RUN dotnet build "AlfaPrentice.csproj" -c Release -o /app/build RUN dotnet build "AlfaPrentice.csproj" -c Release -o /app/build
FROM build AS publish FROM build AS publish
RUN dotnet publish "AlfaPrentice.csproj" -c Release -o /app/publish RUN dotnet publish "AlfaPrentice.csproj" -c Release -o /app/publish
FROM base AS final FROM base AS final
WORKDIR /app WORKDIR /app
COPY --from=publish /app/publish . COPY --from=publish /app/publish .
ENTRYPOINT ["dotnet", "AlfaPrentice.dll"] ENTRYPOINT ["dotnet", "AlfaPrentice.dll"]

View File

@ -1,9 +1,9 @@
{ {
"Logging": { "Logging": {
"LogLevel": { "LogLevel": {
"Default": "Information", "Default": "Information",
"Microsoft": "Warning", "Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information" "Microsoft.Hosting.Lifetime": "Information"
} }
} }
} }

View File

@ -1,10 +1,10 @@
{ {
"Logging": { "Logging": {
"LogLevel": { "LogLevel": {
"Default": "Information", "Default": "Information",
"Microsoft": "Warning", "Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information" "Microsoft.Hosting.Lifetime": "Information"
} }
}, },
"AllowedHosts": "*" "AllowedHosts": "*"
} }

View File

@ -1,37 +1,37 @@
{ {
"iisSettings": { "iisSettings": {
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
"iisExpress": { "iisExpress": {
"applicationUrl": "http://localhost:1263", "applicationUrl": "http://localhost:1263",
"sslPort": 44361 "sslPort": 44361
} }
}, },
"$schema": "http://json.schemastore.org/launchsettings.json", "$schema": "http://json.schemastore.org/launchsettings.json",
"profiles": { "profiles": {
"IIS Express": { "IIS Express": {
"commandName": "IISExpress", "commandName": "IISExpress",
"launchBrowser": true, "launchBrowser": true,
"launchUrl": "weatherforecast", "launchUrl": "weatherforecast",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }
}, },
"AlfaPrentice": { "AlfaPrentice": {
"commandName": "Project", "commandName": "Project",
"launchBrowser": true, "launchBrowser": true,
"launchUrl": "weatherforecast", "launchUrl": "weatherforecast",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
}, },
"applicationUrl": "https://localhost:5001;http://localhost:5000" "applicationUrl": "https://localhost:5001;http://localhost:5000"
}, },
"Docker": { "Docker": {
"commandName": "Docker", "commandName": "Docker",
"launchBrowser": true, "launchBrowser": true,
"launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/weatherforecast", "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/weatherforecast",
"publishAllPorts": true, "publishAllPorts": true,
"useSSL": true "useSSL": true
} }
} }
} }

View File

@ -1,9 +1,9 @@
{ {
"Logging": { "Logging": {
"LogLevel": { "LogLevel": {
"Default": "Information", "Default": "Information",
"Microsoft": "Warning", "Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information" "Microsoft.Hosting.Lifetime": "Information"
} }
} }
} }

View File

@ -1,10 +1,10 @@
{ {
"Logging": { "Logging": {
"LogLevel": { "LogLevel": {
"Default": "Information", "Default": "Information",
"Microsoft": "Warning", "Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information" "Microsoft.Hosting.Lifetime": "Information"
} }
}, },
"AllowedHosts": "*" "AllowedHosts": "*"
} }

View File

@ -1,72 +1,72 @@
{ {
"format": 1, "format": 1,
"restore": { "restore": {
"C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {} "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {}
}, },
"projects": { "projects": {
"C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": { "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", "projectUniqueName": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
"projectName": "AlfaPrentice", "projectName": "AlfaPrentice",
"projectPath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", "projectPath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj",
"packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\", "packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\",
"outputPath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\obj\\", "outputPath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\obj\\",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"fallbackFolders": [ "fallbackFolders": [
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
], ],
"configFilePaths": [ "configFilePaths": [
"C:\\Users\\Xandra Mentink\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Users\\Xandra Mentink\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
], ],
"originalTargetFrameworks": [ "originalTargetFrameworks": [
"netcoreapp3.1" "netcoreapp3.1"
], ],
"sources": { "sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {} "https://api.nuget.org/v3/index.json": {}
}, },
"frameworks": { "frameworks": {
"netcoreapp3.1": { "netcoreapp3.1": {
"projectReferences": {} "projectReferences": {}
} }
}, },
"warningProperties": { "warningProperties": {
"warnAsError": [ "warnAsError": [
"NU1605" "NU1605"
] ]
} }
}, },
"frameworks": { "frameworks": {
"netcoreapp3.1": { "netcoreapp3.1": {
"dependencies": { "dependencies": {
"Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": {
"target": "Package", "target": "Package",
"version": "[1.10.9, )" "version": "[1.10.9, )"
} }
}, },
"imports": [ "imports": [
"net461", "net461",
"net462", "net462",
"net47", "net47",
"net471", "net471",
"net472", "net472",
"net48" "net48"
], ],
"assetTargetFallback": true, "assetTargetFallback": true,
"warn": true, "warn": true,
"frameworkReferences": { "frameworkReferences": {
"Microsoft.AspNetCore.App": { "Microsoft.AspNetCore.App": {
"privateAssets": "none" "privateAssets": "none"
}, },
"Microsoft.NETCore.App": { "Microsoft.NETCore.App": {
"privateAssets": "all" "privateAssets": "all"
} }
}, },
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json" "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json"
} }
} }
} }
} }
} }

View File

@ -1,24 +1,24 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?> <?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile> <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Xandra Mentink\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders> <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Xandra Mentink\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.7.0</NuGetToolVersion> <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.7.0</NuGetToolVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="$([MSBuild]::EnsureTrailingSlash($(NuGetPackageFolders)))" /> <SourceRoot Include="$([MSBuild]::EnsureTrailingSlash($(NuGetPackageFolders)))" />
</ItemGroup> </ItemGroup>
<PropertyGroup> <PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup> </PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.10.9\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.10.9\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props')" /> <Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.10.9\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.10.9\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props')" />
</ImportGroup> </ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets Condition=" '$(PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets)' == '' ">C:\Users\Xandra Mentink\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.10.9</PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets> <PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets Condition=" '$(PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets)' == '' ">C:\Users\Xandra Mentink\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.10.9</PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?> <?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup> <PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup> </PropertyGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.10.9\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.10.9\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets')" /> <Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.10.9\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.10.9\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets')" />
</ImportGroup> </ImportGroup>
</Project> </Project>

View File

@ -1,24 +1,24 @@
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// This code was generated by a tool. // This code was generated by a tool.
// Runtime Version:4.0.30319.42000 // Runtime Version:4.0.30319.42000
// //
// Changes to this file may cause incorrect behavior and will be lost if // Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated. // the code is regenerated.
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
using System; using System;
using System.Reflection; using System.Reflection;
[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("a34cc255-9b57-4681-8451-8df6c989a5ef")] [assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("a34cc255-9b57-4681-8451-8df6c989a5ef")]
[assembly: System.Reflection.AssemblyCompanyAttribute("AlfaPrentice")] [assembly: System.Reflection.AssemblyCompanyAttribute("AlfaPrentice")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("AlfaPrentice")] [assembly: System.Reflection.AssemblyProductAttribute("AlfaPrentice")]
[assembly: System.Reflection.AssemblyTitleAttribute("AlfaPrentice")] [assembly: System.Reflection.AssemblyTitleAttribute("AlfaPrentice")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class. // Generated by the MSBuild WriteCodeFragment class.

View File

@ -1 +1 @@
42bd155d6f1f1909456e742024ced9dc94d2ba55 42bd155d6f1f1909456e742024ced9dc94d2ba55

View File

@ -1 +1 @@
550bf7cacb6ace12889197695f45c43e678c7223 550bf7cacb6ace12889197695f45c43e678c7223

View File

@ -1,9 +1,9 @@
C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\appsettings.Development.json C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\appsettings.Development.json
C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\appsettings.json C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\appsettings.json
C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Properties\launchSettings.json C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\bin\Debug\netcoreapp3.1\Properties\launchSettings.json
C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.csprojAssemblyReference.cache C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.csprojAssemblyReference.cache
C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.AssemblyInfoInputs.cache C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.AssemblyInfoInputs.cache
C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.AssemblyInfo.cs C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.AssemblyInfo.cs
C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.RazorTargetAssemblyInfo.cache C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\AlfaPrentice.RazorTargetAssemblyInfo.cache
C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\staticwebassets\AlfaPrentice.StaticWebAssets.Manifest.cache C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\staticwebassets\AlfaPrentice.StaticWebAssets.Manifest.cache
C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\staticwebassets\AlfaPrentice.StaticWebAssets.xml C:\Users\Xandra Mentink\source\repos\Xandra10101\AlfaPrentice\AlfaPrentice\AlfaPrentice\obj\Debug\netcoreapp3.1\staticwebassets\AlfaPrentice.StaticWebAssets.xml