Adding projects
This commit is contained in:
26
WD7UVN_HFT_2023241.Endpoint/Program.cs
Normal file
26
WD7UVN_HFT_2023241.Endpoint/Program.cs
Normal file
@@ -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 WD7UVN_HFT_2023241.Endpoint
|
||||
{
|
||||
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<Startup>();
|
||||
});
|
||||
}
|
||||
}
|
||||
28
WD7UVN_HFT_2023241.Endpoint/Properties/launchSettings.json
Normal file
28
WD7UVN_HFT_2023241.Endpoint/Properties/launchSettings.json
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:42469",
|
||||
"sslPort": 44362
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": true,
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"WD7UVN_HFT_2023241.Endpoint": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": "true",
|
||||
"launchBrowser": true,
|
||||
"applicationUrl": "https://localhost:5001;http://localhost:5000",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
40
WD7UVN_HFT_2023241.Endpoint/Startup.cs
Normal file
40
WD7UVN_HFT_2023241.Endpoint/Startup.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Hosting;
|
||||
|
||||
namespace WD7UVN_HFT_2023241.Endpoint
|
||||
{
|
||||
public class Startup
|
||||
{
|
||||
// This method gets called by the runtime. Use this method to add services to the container.
|
||||
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
|
||||
public void ConfigureServices(IServiceCollection services)
|
||||
{
|
||||
}
|
||||
|
||||
// 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.UseRouting();
|
||||
|
||||
app.UseEndpoints(endpoints =>
|
||||
{
|
||||
endpoints.MapGet("/", async context =>
|
||||
{
|
||||
await context.Response.WriteAsync("Hello World!");
|
||||
});
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
9
WD7UVN_HFT_2023241.Endpoint/appsettings.Development.json
Normal file
9
WD7UVN_HFT_2023241.Endpoint/appsettings.Development.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft": "Warning",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
}
|
||||
}
|
||||
10
WD7UVN_HFT_2023241.Endpoint/appsettings.json
Normal file
10
WD7UVN_HFT_2023241.Endpoint/appsettings.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft": "Warning",
|
||||
"Microsoft.Hosting.Lifetime": "Information"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Endpoint/WD7UVN_HFT_2023241.Endpoint.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Endpoint/WD7UVN_HFT_2023241.Endpoint.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Endpoint/WD7UVN_HFT_2023241.Endpoint.csproj",
|
||||
"projectName": "WD7UVN_HFT_2023241.Endpoint",
|
||||
"projectPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Endpoint/WD7UVN_HFT_2023241.Endpoint.csproj",
|
||||
"packagesPath": "/home/typo/.nuget/packages/",
|
||||
"outputPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Endpoint/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/typo/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[5.0.0, 5.0.0]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.AspNetCore.App": {
|
||||
"privateAssets": "none"
|
||||
},
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.111/RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/typo/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/typo/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.2</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/typo/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
75
WD7UVN_HFT_2023241.Endpoint/obj/project.assets.json
Normal file
75
WD7UVN_HFT_2023241.Endpoint/obj/project.assets.json
Normal file
@@ -0,0 +1,75 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net5.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net5.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"/home/typo/.nuget/packages/": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Endpoint/WD7UVN_HFT_2023241.Endpoint.csproj",
|
||||
"projectName": "WD7UVN_HFT_2023241.Endpoint",
|
||||
"projectPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Endpoint/WD7UVN_HFT_2023241.Endpoint.csproj",
|
||||
"packagesPath": "/home/typo/.nuget/packages/",
|
||||
"outputPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Endpoint/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/typo/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[5.0.0, 5.0.0]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.AspNetCore.App": {
|
||||
"privateAssets": "none"
|
||||
},
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.111/RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
10
WD7UVN_HFT_2023241.Endpoint/obj/project.nuget.cache
Normal file
10
WD7UVN_HFT_2023241.Endpoint/obj/project.nuget.cache
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "1+B0/WpTUqtHIcUh4JtIN+fMXGH2FCSwpA2MeeEgKXc7Q3vL2wK1c12ulbJrjVgO+7Yb1V+4iESpQEJTtumIvQ==",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Endpoint/WD7UVN_HFT_2023241.Endpoint.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/home/typo/.nuget/packages/microsoft.aspnetcore.app.ref/5.0.0/microsoft.aspnetcore.app.ref.5.0.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
8
WD7UVN_HFT_2023241.Logic/Class1.cs
Normal file
8
WD7UVN_HFT_2023241.Logic/Class1.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using System;
|
||||
|
||||
namespace WD7UVN_HFT_2023241.Logic
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
}
|
||||
}
|
||||
7
WD7UVN_HFT_2023241.Logic/WD7UVN_HFT_2023241.Logic.csproj
Normal file
7
WD7UVN_HFT_2023241.Logic/WD7UVN_HFT_2023241.Logic.csproj
Normal file
@@ -0,0 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Logic/WD7UVN_HFT_2023241.Logic.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Logic/WD7UVN_HFT_2023241.Logic.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Logic/WD7UVN_HFT_2023241.Logic.csproj",
|
||||
"projectName": "WD7UVN_HFT_2023241.Logic",
|
||||
"projectPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Logic/WD7UVN_HFT_2023241.Logic.csproj",
|
||||
"packagesPath": "/home/typo/.nuget/packages/",
|
||||
"outputPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Logic/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/typo/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[5.0.0, 5.0.0]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.111/RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/typo/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/typo/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.2</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/typo/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
72
WD7UVN_HFT_2023241.Logic/obj/project.assets.json
Normal file
72
WD7UVN_HFT_2023241.Logic/obj/project.assets.json
Normal file
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net5.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net5.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"/home/typo/.nuget/packages/": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Logic/WD7UVN_HFT_2023241.Logic.csproj",
|
||||
"projectName": "WD7UVN_HFT_2023241.Logic",
|
||||
"projectPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Logic/WD7UVN_HFT_2023241.Logic.csproj",
|
||||
"packagesPath": "/home/typo/.nuget/packages/",
|
||||
"outputPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Logic/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/typo/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[5.0.0, 5.0.0]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.111/RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
10
WD7UVN_HFT_2023241.Logic/obj/project.nuget.cache
Normal file
10
WD7UVN_HFT_2023241.Logic/obj/project.nuget.cache
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "A/R65U27FrpGzs/ovGUC0spZ8ho1oieZTORYzD1yNuMPFKOtN3SjQhkAqb36Pa2VxwJOr3wRTyi8sA62hfY/8g==",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Logic/WD7UVN_HFT_2023241.Logic.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/home/typo/.nuget/packages/microsoft.aspnetcore.app.ref/5.0.0/microsoft.aspnetcore.app.ref.5.0.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
8
WD7UVN_HFT_2023241.Models/Class1.cs
Normal file
8
WD7UVN_HFT_2023241.Models/Class1.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using System;
|
||||
|
||||
namespace WD7UVN_HFT_2023241.Models
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Models/WD7UVN_HFT_2023241.Models.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Models/WD7UVN_HFT_2023241.Models.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Models/WD7UVN_HFT_2023241.Models.csproj",
|
||||
"projectName": "WD7UVN_HFT_2023241.Models",
|
||||
"projectPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Models/WD7UVN_HFT_2023241.Models.csproj",
|
||||
"packagesPath": "/home/typo/.nuget/packages/",
|
||||
"outputPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Models/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/typo/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[5.0.0, 5.0.0]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.111/RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/typo/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/typo/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.2</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/typo/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
72
WD7UVN_HFT_2023241.Models/obj/project.assets.json
Normal file
72
WD7UVN_HFT_2023241.Models/obj/project.assets.json
Normal file
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net5.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net5.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"/home/typo/.nuget/packages/": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Models/WD7UVN_HFT_2023241.Models.csproj",
|
||||
"projectName": "WD7UVN_HFT_2023241.Models",
|
||||
"projectPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Models/WD7UVN_HFT_2023241.Models.csproj",
|
||||
"packagesPath": "/home/typo/.nuget/packages/",
|
||||
"outputPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Models/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/typo/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[5.0.0, 5.0.0]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.111/RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
10
WD7UVN_HFT_2023241.Models/obj/project.nuget.cache
Normal file
10
WD7UVN_HFT_2023241.Models/obj/project.nuget.cache
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "0KKMPzrf1UpW7HjpsjC11mfTqzFgyMnC1EoSiPFN5qa46O/9eOeKUXtXd1qaBvR2Btc5UX32+EabGbawTQ5Hog==",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Models/WD7UVN_HFT_2023241.Models.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/home/typo/.nuget/packages/microsoft.aspnetcore.app.ref/5.0.0/microsoft.aspnetcore.app.ref.5.0.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
8
WD7UVN_HFT_2023241.Repository/Class1.cs
Normal file
8
WD7UVN_HFT_2023241.Repository/Class1.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using System;
|
||||
|
||||
namespace WD7UVN_HFT_2023241.Repository
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Repository/WD7UVN_HFT_2023241.Repository.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Repository/WD7UVN_HFT_2023241.Repository.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Repository/WD7UVN_HFT_2023241.Repository.csproj",
|
||||
"projectName": "WD7UVN_HFT_2023241.Repository",
|
||||
"projectPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Repository/WD7UVN_HFT_2023241.Repository.csproj",
|
||||
"packagesPath": "/home/typo/.nuget/packages/",
|
||||
"outputPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Repository/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/typo/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[5.0.0, 5.0.0]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.111/RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/typo/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/typo/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.2</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/typo/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
72
WD7UVN_HFT_2023241.Repository/obj/project.assets.json
Normal file
72
WD7UVN_HFT_2023241.Repository/obj/project.assets.json
Normal file
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net5.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net5.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"/home/typo/.nuget/packages/": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Repository/WD7UVN_HFT_2023241.Repository.csproj",
|
||||
"projectName": "WD7UVN_HFT_2023241.Repository",
|
||||
"projectPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Repository/WD7UVN_HFT_2023241.Repository.csproj",
|
||||
"packagesPath": "/home/typo/.nuget/packages/",
|
||||
"outputPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Repository/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/typo/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[5.0.0, 5.0.0]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.111/RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
10
WD7UVN_HFT_2023241.Repository/obj/project.nuget.cache
Normal file
10
WD7UVN_HFT_2023241.Repository/obj/project.nuget.cache
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "RGV+fo7PXf6inTjhSS5Wkx598e+H9erK4A+uzFa9wEGeygTxzfLE+uZU9Si6TDcH6iMFO1tgyWufSV0bB0EnJw==",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Repository/WD7UVN_HFT_2023241.Repository.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/home/typo/.nuget/packages/microsoft.aspnetcore.app.ref/5.0.0/microsoft.aspnetcore.app.ref.5.0.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
8
WD7UVN_HFT_2023241.Test/Class1.cs
Normal file
8
WD7UVN_HFT_2023241.Test/Class1.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
using System;
|
||||
|
||||
namespace WD7UVN_HFT_2023241.Test
|
||||
{
|
||||
public class Class1
|
||||
{
|
||||
}
|
||||
}
|
||||
7
WD7UVN_HFT_2023241.Test/WD7UVN_HFT_2023241.Test.csproj
Normal file
7
WD7UVN_HFT_2023241.Test/WD7UVN_HFT_2023241.Test.csproj
Normal file
@@ -0,0 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Test/WD7UVN_HFT_2023241.Test.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Test/WD7UVN_HFT_2023241.Test.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Test/WD7UVN_HFT_2023241.Test.csproj",
|
||||
"projectName": "WD7UVN_HFT_2023241.Test",
|
||||
"projectPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Test/WD7UVN_HFT_2023241.Test.csproj",
|
||||
"packagesPath": "/home/typo/.nuget/packages/",
|
||||
"outputPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Test/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/typo/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[5.0.0, 5.0.0]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.111/RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/typo/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/typo/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.2</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/typo/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
72
WD7UVN_HFT_2023241.Test/obj/project.assets.json
Normal file
72
WD7UVN_HFT_2023241.Test/obj/project.assets.json
Normal file
@@ -0,0 +1,72 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net5.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net5.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"/home/typo/.nuget/packages/": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Test/WD7UVN_HFT_2023241.Test.csproj",
|
||||
"projectName": "WD7UVN_HFT_2023241.Test",
|
||||
"projectPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Test/WD7UVN_HFT_2023241.Test.csproj",
|
||||
"packagesPath": "/home/typo/.nuget/packages/",
|
||||
"outputPath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Test/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/typo/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net5.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"downloadDependencies": [
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App.Ref",
|
||||
"version": "[5.0.0, 5.0.0]"
|
||||
}
|
||||
],
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/7.0.111/RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
10
WD7UVN_HFT_2023241.Test/obj/project.nuget.cache
Normal file
10
WD7UVN_HFT_2023241.Test/obj/project.nuget.cache
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "yPoA1mb7DY9ttxaAkA+JH+P9Yk3zYZJDESeBTf+Wf9kNv/j7cWkWFek/ulnakpV7Q5gp0jA+AMhkCIwB5JjoFQ==",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/typo/Projects/WD7UVN_HFT_2023241/WD7UVN_HFT_2023241.Test/WD7UVN_HFT_2023241.Test.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/home/typo/.nuget/packages/microsoft.aspnetcore.app.ref/5.0.0/microsoft.aspnetcore.app.ref.5.0.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
@@ -5,6 +5,16 @@ VisualStudioVersion = 17.0.31903.59
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WD7UVN_HFT_2023241.Client", "WD7UVN_HFT_2023241.Client\WD7UVN_HFT_2023241.Client.csproj", "{1B081783-46AB-44BF-A934-DF672F8A6228}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WD7UVN_HFT_2023241.Models", "WD7UVN_HFT_2023241.Models\WD7UVN_HFT_2023241.Models.csproj", "{BF8B019B-979F-4612-A126-5886A4C7D4F0}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WD7UVN_HFT_2023241.Logic", "WD7UVN_HFT_2023241.Logic\WD7UVN_HFT_2023241.Logic.csproj", "{EEBE5ED0-A0D2-45C2-82F8-E7ECD62BEE8A}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WD7UVN_HFT_2023241.Endpoint", "WD7UVN_HFT_2023241.Endpoint\WD7UVN_HFT_2023241.Endpoint.csproj", "{9430B2D2-3137-4DCA-BEFB-7E926D4E3583}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WD7UVN_HFT_2023241.Repository", "WD7UVN_HFT_2023241.Repository\WD7UVN_HFT_2023241.Repository.csproj", "{316342CA-7521-4A01-8BDB-5AA76D4DE855}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WD7UVN_HFT_2023241.Test", "WD7UVN_HFT_2023241.Test\WD7UVN_HFT_2023241.Test.csproj", "{63F3B585-3E8C-41F5-8D6C-FB59932D0819}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@@ -18,5 +28,25 @@ Global
|
||||
{1B081783-46AB-44BF-A934-DF672F8A6228}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{1B081783-46AB-44BF-A934-DF672F8A6228}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{1B081783-46AB-44BF-A934-DF672F8A6228}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{BF8B019B-979F-4612-A126-5886A4C7D4F0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{BF8B019B-979F-4612-A126-5886A4C7D4F0}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{BF8B019B-979F-4612-A126-5886A4C7D4F0}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{BF8B019B-979F-4612-A126-5886A4C7D4F0}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{EEBE5ED0-A0D2-45C2-82F8-E7ECD62BEE8A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{EEBE5ED0-A0D2-45C2-82F8-E7ECD62BEE8A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{EEBE5ED0-A0D2-45C2-82F8-E7ECD62BEE8A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{EEBE5ED0-A0D2-45C2-82F8-E7ECD62BEE8A}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{9430B2D2-3137-4DCA-BEFB-7E926D4E3583}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{9430B2D2-3137-4DCA-BEFB-7E926D4E3583}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{9430B2D2-3137-4DCA-BEFB-7E926D4E3583}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{9430B2D2-3137-4DCA-BEFB-7E926D4E3583}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{316342CA-7521-4A01-8BDB-5AA76D4DE855}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{316342CA-7521-4A01-8BDB-5AA76D4DE855}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{316342CA-7521-4A01-8BDB-5AA76D4DE855}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{316342CA-7521-4A01-8BDB-5AA76D4DE855}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{63F3B585-3E8C-41F5-8D6C-FB59932D0819}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{63F3B585-3E8C-41F5-8D6C-FB59932D0819}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{63F3B585-3E8C-41F5-8D6C-FB59932D0819}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{63F3B585-3E8C-41F5-8D6C-FB59932D0819}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
||||
Reference in New Issue
Block a user