first commit
This commit is contained in:
6
Program.cs
Normal file
6
Program.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
var app = builder.Build();
|
||||
|
||||
app.MapGet("/api/a", () => "Hello World!");
|
||||
|
||||
app.Run();
|
||||
38
Properties/launchSettings.json
Normal file
38
Properties/launchSettings.json
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"$schema": "http://json.schemastore.org/launchsettings.json",
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:28595",
|
||||
"sslPort": 44376
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"applicationUrl": "http://localhost:5020",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"https": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"applicationUrl": "https://localhost:7210;http://localhost:5020",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": true,
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
8
appsettings.Development.json
Normal file
8
appsettings.Development.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
9
appsettings.json
Normal file
9
appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
8
bin/Debug/net8.0/appsettings.Development.json
Normal file
8
bin/Debug/net8.0/appsettings.Development.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
9
bin/Debug/net8.0/appsettings.json
Normal file
9
bin/Debug/net8.0/appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
BIN
bin/Debug/net8.0/flx-billing
Executable file
BIN
bin/Debug/net8.0/flx-billing
Executable file
Binary file not shown.
23
bin/Debug/net8.0/flx-billing.deps.json
Normal file
23
bin/Debug/net8.0/flx-billing.deps.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"flx-billing/1.0.0": {
|
||||
"runtime": {
|
||||
"flx-billing.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"flx-billing/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
bin/Debug/net8.0/flx-billing.dll
Normal file
BIN
bin/Debug/net8.0/flx-billing.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net8.0/flx-billing.pdb
Normal file
BIN
bin/Debug/net8.0/flx-billing.pdb
Normal file
Binary file not shown.
19
bin/Debug/net8.0/flx-billing.runtimeconfig.json
Normal file
19
bin/Debug/net8.0/flx-billing.runtimeconfig.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"frameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.AspNetCore.App",
|
||||
"version": "8.0.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.GC.Server": true,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
10
flx-billing.csproj
Normal file
10
flx-billing.csproj
Normal file
@@ -0,0 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<RootNamespace>flx_billing</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
24
flx-billing.sln
Normal file
24
flx-billing.sln
Normal file
@@ -0,0 +1,24 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.5.2.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "flx-billing", "flx-billing.csproj", "{AB40F59B-1DA8-3122-B91B-F666D3A69DDE}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{AB40F59B-1DA8-3122-B91B-F666D3A69DDE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{AB40F59B-1DA8-3122-B91B-F666D3A69DDE}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{AB40F59B-1DA8-3122-B91B-F666D3A69DDE}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{AB40F59B-1DA8-3122-B91B-F666D3A69DDE}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {E2A7A222-3B2B-459D-BF15-84D26476FD79}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||
BIN
obj/Debug/net8.0/apphost
Executable file
BIN
obj/Debug/net8.0/apphost
Executable file
Binary file not shown.
22
obj/Debug/net8.0/flx-billing.AssemblyInfo.cs
Normal file
22
obj/Debug/net8.0/flx-billing.AssemblyInfo.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("flx-billing")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("flx-billing")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("flx-billing")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// MSBuild WriteCodeFragment 클래스에서 생성되었습니다.
|
||||
|
||||
1
obj/Debug/net8.0/flx-billing.AssemblyInfoInputs.cache
Normal file
1
obj/Debug/net8.0/flx-billing.AssemblyInfoInputs.cache
Normal file
@@ -0,0 +1 @@
|
||||
f710db574de32658e4baf8a87a144eac7f55da2077cea99714151a6ca5060fb8
|
||||
@@ -0,0 +1,19 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb = true
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = flx_billing
|
||||
build_property.RootNamespace = flx_billing
|
||||
build_property.ProjectDir = /home/mangow3c/apps/dotnet/flx-billing/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.RazorLangVersion = 8.0
|
||||
build_property.SupportLocalizedComponentNames =
|
||||
build_property.GenerateRazorMetadataSourceChecksumAttributes =
|
||||
build_property.MSBuildProjectDirectory = /home/mangow3c/apps/dotnet/flx-billing
|
||||
build_property._RazorSourceGeneratorDebug =
|
||||
17
obj/Debug/net8.0/flx-billing.GlobalUsings.g.cs
Normal file
17
obj/Debug/net8.0/flx-billing.GlobalUsings.g.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
// <auto-generated/>
|
||||
global using global::Microsoft.AspNetCore.Builder;
|
||||
global using global::Microsoft.AspNetCore.Hosting;
|
||||
global using global::Microsoft.AspNetCore.Http;
|
||||
global using global::Microsoft.AspNetCore.Routing;
|
||||
global using global::Microsoft.Extensions.Configuration;
|
||||
global using global::Microsoft.Extensions.DependencyInjection;
|
||||
global using global::Microsoft.Extensions.Hosting;
|
||||
global using global::Microsoft.Extensions.Logging;
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Net.Http.Json;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
||||
BIN
obj/Debug/net8.0/flx-billing.assets.cache
Normal file
BIN
obj/Debug/net8.0/flx-billing.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
92220265aab081f8363370e5933b48362afb5dc45dfb5f4522a656723a377151
|
||||
25
obj/Debug/net8.0/flx-billing.csproj.FileListAbsolute.txt
Normal file
25
obj/Debug/net8.0/flx-billing.csproj.FileListAbsolute.txt
Normal file
@@ -0,0 +1,25 @@
|
||||
/home/mangow3c/apps/dotnet/flx-billing/bin/Debug/net8.0/appsettings.Development.json
|
||||
/home/mangow3c/apps/dotnet/flx-billing/bin/Debug/net8.0/appsettings.json
|
||||
/home/mangow3c/apps/dotnet/flx-billing/bin/Debug/net8.0/flx-billing
|
||||
/home/mangow3c/apps/dotnet/flx-billing/bin/Debug/net8.0/flx-billing.deps.json
|
||||
/home/mangow3c/apps/dotnet/flx-billing/bin/Debug/net8.0/flx-billing.runtimeconfig.json
|
||||
/home/mangow3c/apps/dotnet/flx-billing/bin/Debug/net8.0/flx-billing.dll
|
||||
/home/mangow3c/apps/dotnet/flx-billing/bin/Debug/net8.0/flx-billing.pdb
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/flx-billing.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/flx-billing.AssemblyInfoInputs.cache
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/flx-billing.AssemblyInfo.cs
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/flx-billing.csproj.CoreCompileInputs.cache
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/flx-billing.MvcApplicationPartsAssemblyInfo.cache
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/staticwebassets.build.json
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/staticwebassets.development.json
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/staticwebassets/msbuild.flx-billing.Microsoft.AspNetCore.StaticWebAssets.props
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/staticwebassets/msbuild.build.flx-billing.props
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.flx-billing.props
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.flx-billing.props
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/staticwebassets.pack.json
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/scopedcss/bundle/flx-billing.styles.css
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/flx-billing.dll
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/refint/flx-billing.dll
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/flx-billing.pdb
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/flx-billing.genruntimeconfig.cache
|
||||
/home/mangow3c/apps/dotnet/flx-billing/obj/Debug/net8.0/ref/flx-billing.dll
|
||||
BIN
obj/Debug/net8.0/flx-billing.dll
Normal file
BIN
obj/Debug/net8.0/flx-billing.dll
Normal file
Binary file not shown.
1
obj/Debug/net8.0/flx-billing.genruntimeconfig.cache
Normal file
1
obj/Debug/net8.0/flx-billing.genruntimeconfig.cache
Normal file
@@ -0,0 +1 @@
|
||||
3d9aed2d16650fbd163331b495bf4aaaaa442286dd4664ab0e8bc16a136a189c
|
||||
BIN
obj/Debug/net8.0/flx-billing.pdb
Normal file
BIN
obj/Debug/net8.0/flx-billing.pdb
Normal file
Binary file not shown.
BIN
obj/Debug/net8.0/ref/flx-billing.dll
Normal file
BIN
obj/Debug/net8.0/ref/flx-billing.dll
Normal file
Binary file not shown.
BIN
obj/Debug/net8.0/refint/flx-billing.dll
Normal file
BIN
obj/Debug/net8.0/refint/flx-billing.dll
Normal file
Binary file not shown.
11
obj/Debug/net8.0/staticwebassets.build.json
Normal file
11
obj/Debug/net8.0/staticwebassets.build.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"Hash": "SGO1PBdp2KhTv3RO/awxm1QuwZQ/JDsiGFBz8k5SALU=",
|
||||
"Source": "flx-billing",
|
||||
"BasePath": "_content/flx-billing",
|
||||
"Mode": "Default",
|
||||
"ManifestType": "Build",
|
||||
"ReferencedProjectsConfiguration": [],
|
||||
"DiscoveryPatterns": [],
|
||||
"Assets": []
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="../build/flx-billing.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="../buildMultiTargeting/flx-billing.props" />
|
||||
</Project>
|
||||
69
obj/flx-billing.csproj.nuget.dgspec.json
Normal file
69
obj/flx-billing.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,69 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/home/mangow3c/apps/dotnet/flx-billing/flx-billing.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/home/mangow3c/apps/dotnet/flx-billing/flx-billing.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/mangow3c/apps/dotnet/flx-billing/flx-billing.csproj",
|
||||
"projectName": "flx-billing",
|
||||
"projectPath": "/home/mangow3c/apps/dotnet/flx-billing/flx-billing.csproj",
|
||||
"packagesPath": "/home/mangow3c/.nuget/packages/",
|
||||
"outputPath": "/home/mangow3c/apps/dotnet/flx-billing/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/mangow3c/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.AspNetCore.App": {
|
||||
"privateAssets": "none"
|
||||
},
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.411/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
15
obj/flx-billing.csproj.nuget.g.props
Normal file
15
obj/flx-billing.csproj.nuget.g.props
Normal file
@@ -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/mangow3c/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/mangow3c/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/mangow3c/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
2
obj/flx-billing.csproj.nuget.g.targets
Normal file
2
obj/flx-billing.csproj.nuget.g.targets
Normal file
@@ -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" />
|
||||
74
obj/project.assets.json
Normal file
74
obj/project.assets.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net8.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net8.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"/home/mangow3c/.nuget/packages/": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/mangow3c/apps/dotnet/flx-billing/flx-billing.csproj",
|
||||
"projectName": "flx-billing",
|
||||
"projectPath": "/home/mangow3c/apps/dotnet/flx-billing/flx-billing.csproj",
|
||||
"packagesPath": "/home/mangow3c/.nuget/packages/",
|
||||
"outputPath": "/home/mangow3c/apps/dotnet/flx-billing/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/mangow3c/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
},
|
||||
"restoreAuditProperties": {
|
||||
"enableAudit": "true",
|
||||
"auditLevel": "low",
|
||||
"auditMode": "direct"
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.AspNetCore.App": {
|
||||
"privateAssets": "none"
|
||||
},
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.411/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
8
obj/project.nuget.cache
Normal file
8
obj/project.nuget.cache
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "RZHfmbJTcI4=",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/mangow3c/apps/dotnet/flx-billing/flx-billing.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user