diff --git a/.vs/AlfaPrentice/v16/.suo b/.vs/AlfaPrentice/v16/.suo new file mode 100644 index 0000000..c8244b0 Binary files /dev/null and b/.vs/AlfaPrentice/v16/.suo differ diff --git a/.vs/ProjectSettings.json b/.vs/ProjectSettings.json new file mode 100644 index 0000000..f8b4888 --- /dev/null +++ b/.vs/ProjectSettings.json @@ -0,0 +1,3 @@ +{ + "CurrentProjectSetting": null +} \ No newline at end of file diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json new file mode 100644 index 0000000..6b61141 --- /dev/null +++ b/.vs/VSWorkspaceState.json @@ -0,0 +1,6 @@ +{ + "ExpandedNodes": [ + "" + ], + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 0000000..5e3ba9c Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/AlfaPrentice/.dockerignore b/AlfaPrentice/.dockerignore new file mode 100644 index 0000000..3729ff0 --- /dev/null +++ b/AlfaPrentice/.dockerignore @@ -0,0 +1,25 @@ +**/.classpath +**/.dockerignore +**/.env +**/.git +**/.gitignore +**/.project +**/.settings +**/.toolstarget +**/.vs +**/.vscode +**/*.*proj.user +**/*.dbmdl +**/*.jfm +**/azds.yaml +**/bin +**/charts +**/docker-compose* +**/Dockerfile* +**/node_modules +**/npm-debug.log +**/obj +**/secrets.dev.yaml +**/values.dev.yaml +LICENSE +README.md \ No newline at end of file diff --git a/AlfaPrentice/.vs/AlfaPrentice/v16/.suo b/AlfaPrentice/.vs/AlfaPrentice/v16/.suo new file mode 100644 index 0000000..714b3e3 Binary files /dev/null and b/AlfaPrentice/.vs/AlfaPrentice/v16/.suo differ diff --git a/AlfaPrentice/AlfaPrentice.sln b/AlfaPrentice/AlfaPrentice.sln new file mode 100644 index 0000000..51ddebb --- /dev/null +++ b/AlfaPrentice/AlfaPrentice.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30621.155 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AlfaPrentice", "AlfaPrentice\AlfaPrentice.csproj", "{C0067D51-8D68-4A3C-9DFD-F1B70126C0A2}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C0067D51-8D68-4A3C-9DFD-F1B70126C0A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C0067D51-8D68-4A3C-9DFD-F1B70126C0A2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C0067D51-8D68-4A3C-9DFD-F1B70126C0A2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C0067D51-8D68-4A3C-9DFD-F1B70126C0A2}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {5F6D3192-93B2-43D8-9CBA-847256A9F54B} + EndGlobalSection +EndGlobal diff --git a/AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj b/AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj new file mode 100644 index 0000000..0f01263 --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj @@ -0,0 +1,23 @@ + + + + netcoreapp3.1 + a34cc255-9b57-4681-8451-8df6c989a5ef + Linux + + + + + + + + + + + + + + + + + diff --git a/AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj.user b/AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj.user new file mode 100644 index 0000000..e681daf --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/AlfaPrentice.csproj.user @@ -0,0 +1,6 @@ + + + + Docker + + \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/Controllers/WeatherForecastController.cs b/AlfaPrentice/AlfaPrentice/Controllers/WeatherForecastController.cs new file mode 100644 index 0000000..c35e4ad --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/Controllers/WeatherForecastController.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Logging; + +namespace AlfaPrentice.Controllers +{ + [ApiController] + [Route("[controller]")] + public class WeatherForecastController : ControllerBase + { + private static readonly string[] Summaries = new[] + { + "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" + }; + + private readonly ILogger _logger; + + public WeatherForecastController(ILogger logger) + { + _logger = logger; + } + + [HttpGet] + public IEnumerable Get() + { + var rng = new Random(); + return Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = DateTime.Now.AddDays(index), + TemperatureC = rng.Next(-20, 55), + Summary = Summaries[rng.Next(Summaries.Length)] + }) + .ToArray(); + } + } +} diff --git a/AlfaPrentice/AlfaPrentice/Dockerfile b/AlfaPrentice/AlfaPrentice/Dockerfile new file mode 100644 index 0000000..03e5dd2 --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/Dockerfile @@ -0,0 +1,22 @@ +#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 +WORKDIR /app +EXPOSE 80 +EXPOSE 443 + +FROM mcr.microsoft.com/dotnet/core/sdk:3.1-buster AS build +WORKDIR /src +COPY ["AlfaPrentice/AlfaPrentice.csproj", "AlfaPrentice/"] +RUN dotnet restore "AlfaPrentice/AlfaPrentice.csproj" +COPY . . +WORKDIR "/src/AlfaPrentice" +RUN dotnet build "AlfaPrentice.csproj" -c Release -o /app/build + +FROM build AS publish +RUN dotnet publish "AlfaPrentice.csproj" -c Release -o /app/publish + +FROM base AS final +WORKDIR /app +COPY --from=publish /app/publish . +ENTRYPOINT ["dotnet", "AlfaPrentice.dll"] \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/Program.cs b/AlfaPrentice/AlfaPrentice/Program.cs new file mode 100644 index 0000000..9f5aa3f --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/Program.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Hosting; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Logging; + +namespace AlfaPrentice +{ + public class Program + { + public static void Main(string[] args) + { + CreateHostBuilder(args).Build().Run(); + } + + public static IHostBuilder CreateHostBuilder(string[] args) => + Host.CreateDefaultBuilder(args) + .ConfigureWebHostDefaults(webBuilder => + { + webBuilder.UseStartup(); + }); + } +} diff --git a/AlfaPrentice/AlfaPrentice/Properties/launchSettings.json b/AlfaPrentice/AlfaPrentice/Properties/launchSettings.json new file mode 100644 index 0000000..fb4deff --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/Properties/launchSettings.json @@ -0,0 +1,37 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:1263", + "sslPort": 44361 + } + }, + "$schema": "http://json.schemastore.org/launchsettings.json", + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "weatherforecast", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "AlfaPrentice": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "weatherforecast", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "Docker": { + "commandName": "Docker", + "launchBrowser": true, + "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/weatherforecast", + "publishAllPorts": true, + "useSSL": true + } + } +} \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/Startup.cs b/AlfaPrentice/AlfaPrentice/Startup.cs new file mode 100644 index 0000000..e5345d7 --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/Startup.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Builder; +using Microsoft.AspNetCore.Hosting; +using Microsoft.AspNetCore.HttpsPolicy; +using Microsoft.AspNetCore.Mvc; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.DependencyInjection; +using Microsoft.Extensions.Hosting; +using Microsoft.Extensions.Logging; + +namespace AlfaPrentice +{ + public class Startup + { + public Startup(IConfiguration configuration) + { + Configuration = configuration; + } + + public IConfiguration Configuration { get; } + + // This method gets called by the runtime. Use this method to add services to the container. + public void ConfigureServices(IServiceCollection services) + { + services.AddControllers(); + } + + // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. + public void Configure(IApplicationBuilder app, IWebHostEnvironment env) + { + if (env.IsDevelopment()) + { + app.UseDeveloperExceptionPage(); + } + + app.UseHttpsRedirection(); + + app.UseRouting(); + + app.UseAuthorization(); + + app.UseEndpoints(endpoints => + { + endpoints.MapControllers(); + }); + } + } +} diff --git a/AlfaPrentice/AlfaPrentice/WeatherForecast.cs b/AlfaPrentice/AlfaPrentice/WeatherForecast.cs new file mode 100644 index 0000000..2154d35 --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/WeatherForecast.cs @@ -0,0 +1,15 @@ +using System; + +namespace AlfaPrentice +{ + public class WeatherForecast + { + public DateTime Date { get; set; } + + public int TemperatureC { get; set; } + + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + + public string Summary { get; set; } + } +} diff --git a/AlfaPrentice/AlfaPrentice/appsettings.Development.json b/AlfaPrentice/AlfaPrentice/appsettings.Development.json new file mode 100644 index 0000000..8983e0f --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + } +} diff --git a/AlfaPrentice/AlfaPrentice/appsettings.json b/AlfaPrentice/AlfaPrentice/appsettings.json new file mode 100644 index 0000000..d9d9a9b --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/appsettings.json @@ -0,0 +1,10 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "AllowedHosts": "*" +} diff --git a/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json b/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json new file mode 100644 index 0000000..fb4deff --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/Properties/launchSettings.json @@ -0,0 +1,37 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:1263", + "sslPort": 44361 + } + }, + "$schema": "http://json.schemastore.org/launchsettings.json", + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "weatherforecast", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "AlfaPrentice": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "weatherforecast", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:5001;http://localhost:5000" + }, + "Docker": { + "commandName": "Docker", + "launchBrowser": true, + "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/weatherforecast", + "publishAllPorts": true, + "useSSL": true + } + } +} \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json b/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json new file mode 100644 index 0000000..8983e0f --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.Development.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + } +} diff --git a/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json b/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json new file mode 100644 index 0000000..d9d9a9b --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/bin/Debug/netcoreapp3.1/appsettings.json @@ -0,0 +1,10 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft": "Warning", + "Microsoft.Hosting.Lifetime": "Information" + } + }, + "AllowedHosts": "*" +} diff --git a/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json b/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json new file mode 100644 index 0000000..32da950 --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json @@ -0,0 +1,72 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {} + }, + "projects": { + "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "projectName": "AlfaPrentice", + "projectPath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Xandra Mentink\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { + "target": "Package", + "version": "[1.10.9, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props b/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props new file mode 100644 index 0000000..29ca6f7 --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props @@ -0,0 +1,24 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Xandra Mentink\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 5.7.0 + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + C:\Users\Xandra Mentink\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.10.9 + + \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets b/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets new file mode 100644 index 0000000..f38263a --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs new file mode 100644 index 0000000..9448aac --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("a34cc255-9b57-4681-8451-8df6c989a5ef")] +[assembly: System.Reflection.AssemblyCompanyAttribute("AlfaPrentice")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("AlfaPrentice")] +[assembly: System.Reflection.AssemblyTitleAttribute("AlfaPrentice")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache new file mode 100644 index 0000000..9549531 --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +42bd155d6f1f1909456e742024ced9dc94d2ba55 diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache new file mode 100644 index 0000000..08aff46 --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.RazorTargetAssemblyInfo.cache @@ -0,0 +1 @@ +550bf7cacb6ace12889197695f45c43e678c7223 diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache new file mode 100644 index 0000000..172ee56 Binary files /dev/null and b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.assets.cache differ diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..298ad93 --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csproj.FileListAbsolute.txt @@ -0,0 +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.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.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.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.xml diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache new file mode 100644 index 0000000..773aab8 Binary files /dev/null and b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/AlfaPrentice.csprojAssemblyReference.cache differ diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache new file mode 100644 index 0000000..e69de29 diff --git a/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml new file mode 100644 index 0000000..7b21d22 --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/Debug/netcoreapp3.1/staticwebassets/AlfaPrentice.StaticWebAssets.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs new file mode 100644 index 0000000..ad8dfe1 --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs new file mode 100644 index 0000000..4210ecf --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("a34cc255-9b57-4681-8451-8df6c989a5ef")] +[assembly: System.Reflection.AssemblyCompanyAttribute("AlfaPrentice")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("AlfaPrentice")] +[assembly: System.Reflection.AssemblyTitleAttribute("AlfaPrentice")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache new file mode 100644 index 0000000..bb2452a --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +bdc64432113bfe338116fdd02bfa23c1ecd3f2db diff --git a/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache new file mode 100644 index 0000000..81b5a3d Binary files /dev/null and b/AlfaPrentice/AlfaPrentice/obj/Release/netcoreapp3.1/AlfaPrentice.assets.cache differ diff --git a/AlfaPrentice/AlfaPrentice/obj/project.assets.json b/AlfaPrentice/AlfaPrentice/obj/project.assets.json new file mode 100644 index 0000000..a40334f --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/project.assets.json @@ -0,0 +1,153 @@ +{ + "version": 3, + "targets": { + ".NETCoreApp,Version=v3.1": { + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": { + "type": "package", + "build": { + "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {}, + "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {} + } + } + } + }, + "libraries": { + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": { + "sha512": "Sug+YeP9YYigFnUdvPCUJjBz7cc2VVR7UBZkIRwPWmVR/HmIM5HbcpX940s4BM3xgL3QHGp3qN7AqkcZ/MjZEw==", + "type": "package", + "path": "microsoft.visualstudio.azure.containers.tools.targets/1.10.9", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.md", + "ThirdPartyNotices.txt", + "build/Container.props", + "build/Container.targets", + "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props", + "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets", + "build/ToolsTarget.props", + "build/ToolsTarget.targets", + "microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512", + "microsoft.visualstudio.azure.containers.tools.targets.nuspec", + "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll", + "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll", + "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll", + "tools/Newtonsoft.Json.dll", + "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/utils/KillProcess.exe", + "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll" + ] + } + }, + "projectFileDependencyGroups": { + ".NETCoreApp,Version=v3.1": [ + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.10.9" + ] + }, + "packageFolders": { + "C:\\Users\\Xandra Mentink\\.nuget\\packages\\": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "projectName": "AlfaPrentice", + "projectPath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\Xandra Mentink\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netcoreapp3.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netcoreapp3.1": { + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "netcoreapp3.1": { + "dependencies": { + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { + "target": "Package", + "version": "[1.10.9, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/AlfaPrentice/AlfaPrentice/obj/project.nuget.cache b/AlfaPrentice/AlfaPrentice/obj/project.nuget.cache new file mode 100644 index 0000000..5fc7ec4 --- /dev/null +++ b/AlfaPrentice/AlfaPrentice/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "+9g49VUM94weX/FAwmcld5mn/tf066LMv9c4xvt+e5uT0EPq99hYTVxVp5/nnU3ohNHIwhgoMjQpTuRxb5wzhA==", + "success": true, + "projectFilePath": "C:\\Users\\Xandra Mentink\\source\\repos\\Xandra10101\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.10.9\\microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file