.gtignore had broken?
This commit is contained in:
parent
832495e816
commit
76a2f3921b
@ -109,15 +109,15 @@ csharp_prefer_simple_using_statement = true
|
||||
csharp_style_namespace_declarations = file_scoped:suggestion
|
||||
|
||||
# Выражения уровень предпочтения
|
||||
csharp_prefer_simple_default_expression = true
|
||||
csharp_prefer_simple_default_expression = true:suggestion
|
||||
csharp_style_deconstructed_variable_declaration = false
|
||||
csharp_style_implicit_object_creation_when_type_is_apparent = true:silent
|
||||
csharp_style_inlined_variable_declaration = true
|
||||
csharp_style_pattern_local_over_anonymous_function = true
|
||||
csharp_style_prefer_index_operator = false
|
||||
csharp_style_prefer_null_check_over_type_check = true
|
||||
csharp_style_prefer_range_operator = false
|
||||
csharp_style_throw_expression = true
|
||||
csharp_style_prefer_index_operator = false:suggestion
|
||||
csharp_style_prefer_null_check_over_type_check = true:suggestion
|
||||
csharp_style_prefer_range_operator = false:suggestion
|
||||
csharp_style_throw_expression = true:suggestion
|
||||
csharp_style_unused_value_assignment_preference = discard_variable:warning
|
||||
csharp_style_unused_value_expression_statement_preference = unused_local_variable
|
||||
|
||||
@ -217,3 +217,24 @@ dotnet_naming_style.begins_with_i.required_prefix = I
|
||||
dotnet_naming_style.begins_with_i.required_suffix =
|
||||
dotnet_naming_style.begins_with_i.word_separator =
|
||||
dotnet_naming_style.begins_with_i.capitalization = pascal_case
|
||||
csharp_style_prefer_local_over_anonymous_function = true:suggestion
|
||||
|
||||
[*.{cs,vb}]
|
||||
dotnet_style_operator_placement_when_wrapping = beginning_of_line
|
||||
tab_width = 4
|
||||
indent_size = 4
|
||||
dotnet_style_coalesce_expression = true:suggestion
|
||||
dotnet_style_null_propagation = true:suggestion
|
||||
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
|
||||
dotnet_style_prefer_auto_properties = true:suggestion
|
||||
dotnet_style_object_initializer = true:suggestion
|
||||
dotnet_style_collection_initializer = true:suggestion
|
||||
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
|
||||
dotnet_style_prefer_conditional_expression_over_assignment = true:suggestion
|
||||
dotnet_style_prefer_conditional_expression_over_return = true:suggestion
|
||||
dotnet_style_explicit_tuple_names = true:suggestion
|
||||
dotnet_style_prefer_inferred_tuple_names = true:suggestion
|
||||
dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
|
||||
dotnet_style_prefer_compound_assignment = true:suggestion
|
||||
dotnet_style_prefer_simplified_interpolation = true:suggestion
|
||||
dotnet_style_namespace_match_folder = true:suggestion
|
||||
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,8 +1,3 @@
|
||||
## Ignore Visual Studio temporary files, build results, and
|
||||
## files generated by popular Visual Studio add-ons.
|
||||
##
|
||||
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
||||
|
||||
# User-specific files
|
||||
*.rsuser
|
||||
*.suo
|
||||
|
||||
@ -5,7 +5,14 @@ VisualStudioVersion = 17.0.32014.148
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DTLib", "DTLib\DTLib.csproj", "{B620E5E9-800F-4B2D-B4A5-062E05DB704F}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestProgram", "TestProgram\TestProgram.csproj", "{72BA37EF-07EC-4D34-966A-20D5E83ADB32}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestProgram", "TestProgram\TestProgram.csproj", "{72BA37EF-07EC-4D34-966A-20D5E83ADB32}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{6308F24E-A4FF-46B3-B72F-30E05DDCB1D5}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
.editorconfig = .editorconfig
|
||||
.gitignore = .gitignore
|
||||
README.md = README.md
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -1,14 +0,0 @@
|
||||
bool: false;
|
||||
char: 'v';
|
||||
byte: 255b;
|
||||
sbyte: -125sb;
|
||||
short: 14003s;
|
||||
ushort: 32025us;
|
||||
int: -2515;
|
||||
uint: 0u;
|
||||
long: -29863854396l;
|
||||
ulong: 87659057946ul;
|
||||
float: 39.944f;
|
||||
double: 965.557;
|
||||
decimal: -84.20de;
|
||||
string: "_$\"\\\\'''\n\ta ûûû000;2;=:%d;```";
|
||||
@ -1,9 +0,0 @@
|
||||
message:
|
||||
{
|
||||
type: "sent";
|
||||
time: "15.12.2021 20:51:24 +03:00";
|
||||
author_id: 293798876950036480ul;
|
||||
channel_id: 913088838761603212ul;
|
||||
message_id: 920734809096077353ul;
|
||||
text: "_$\"\\\\'''\n\ta ыыы000;2;=:%d;```";
|
||||
};
|
||||
@ -1,4 +0,0 @@
|
||||
chars: ['a','b','c'];
|
||||
uints: [10,20,30,0,0];
|
||||
floats: [8.2,5.225,-0.9993];
|
||||
strings:["aaa","bbb","ccc"];
|
||||
File diff suppressed because it is too large
Load Diff
@ -1 +0,0 @@
|
||||
nullable:null;
|
||||
@ -1,14 +0,0 @@
|
||||
bool:b=false;
|
||||
char:c='v';
|
||||
string:s="hello";
|
||||
byte:by=255;
|
||||
sbyte:sb=-125;
|
||||
short:sh=14003;
|
||||
ushort:us=32025;
|
||||
int:i=-2515;
|
||||
uint:ui=0;
|
||||
long:l=-29863854396;
|
||||
ulong:ul=87659057946;
|
||||
float:f=39.944;
|
||||
double:do=965.557;
|
||||
decimal:de=-84.20;
|
||||
@ -1 +0,0 @@
|
||||
List<string>:list=[string:"a",string:"b"];
|
||||
@ -1,36 +0,0 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"TestProgram/1.0.0": {
|
||||
"dependencies": {
|
||||
"DTLib": "1.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"TestProgram.dll": {}
|
||||
}
|
||||
},
|
||||
"DTLib/1.0.0": {
|
||||
"runtime": {
|
||||
"DTLib.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"TestProgram/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"DTLib/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,9 +0,0 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@ -1,14 +0,0 @@
|
||||
bool: false;
|
||||
char: 'v';
|
||||
byte: 255b;
|
||||
sbyte: -125sb;
|
||||
short: 14003s;
|
||||
ushort: 32025us;
|
||||
int: -2515;
|
||||
uint: 0u;
|
||||
long: -29863854396l;
|
||||
ulong: 87659057946ul;
|
||||
float: 39.944f;
|
||||
double: 965.557;
|
||||
decimal: -84.20de;
|
||||
string: "_$\"\\\\'''\n\ta ûûû000;2;=:%d;```";
|
||||
@ -1,9 +0,0 @@
|
||||
message:
|
||||
{
|
||||
type: "sent";
|
||||
time: "15.12.2021 20:51:24 +03:00";
|
||||
author_id: 293798876950036480ul;
|
||||
channel_id: 913088838761603212ul;
|
||||
message_id: 920734809096077353ul;
|
||||
text: "_$\"\\\\'''\n\ta ыыы000;2;=:%d;```";
|
||||
};
|
||||
@ -1,4 +0,0 @@
|
||||
chars: ['a','b','c'];
|
||||
uints: [10,20,30,0,0];
|
||||
floats: [8.2,5.225,-0.9993];
|
||||
strings:["aaa","bbb","ccc"];
|
||||
File diff suppressed because it is too large
Load Diff
@ -1 +0,0 @@
|
||||
nullable:null;
|
||||
@ -1,14 +0,0 @@
|
||||
bool:b=false;
|
||||
char:c='v';
|
||||
string:s="hello";
|
||||
byte:by=255;
|
||||
sbyte:sb=-125;
|
||||
short:sh=14003;
|
||||
ushort:us=32025;
|
||||
int:i=-2515;
|
||||
uint:ui=0;
|
||||
long:l=-29863854396;
|
||||
ulong:ul=87659057946;
|
||||
float:f=39.944;
|
||||
double:do=965.557;
|
||||
decimal:de=-84.20;
|
||||
@ -1 +0,0 @@
|
||||
List<string>:list=[string:"a",string:"b"];
|
||||
@ -1,36 +0,0 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v6.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v6.0": {
|
||||
"TestProgram/1.0.0": {
|
||||
"dependencies": {
|
||||
"DTLib": "1.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"TestProgram.dll": {}
|
||||
}
|
||||
},
|
||||
"DTLib/1.0.0": {
|
||||
"runtime": {
|
||||
"DTLib.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"TestProgram/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"DTLib/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,12 +0,0 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net6.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "6.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -7,4 +7,4 @@ build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = TestProgram
|
||||
build_property.ProjectDir = C:\projects\c#\DTLib\TestProgram\
|
||||
build_property.ProjectDir = C:\projects\DTLib\TestProgram\
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@ -1 +0,0 @@
|
||||
3fc818a7aa42b85417b1a9a4ad4c679fab7ccd44
|
||||
@ -1,23 +0,0 @@
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.csproj.AssemblyReference.cache
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.AssemblyInfoInputs.cache
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.AssemblyInfo.cs
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.csproj.CoreCompileInputs.cache
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\TestProgram.exe
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV2X\base_types.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV2X\lists.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV2X\null.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV30\base_types.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV30\enumerables.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\TestProgram.deps.json
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\TestProgram.runtimeconfig.json
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\TestProgram.dll
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\TestProgram.pdb
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DTLib.dll
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DTLib.pdb
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.csproj.CopyComplete
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.dll
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.pdb
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Debug\net6.0\TestProgram.genruntimeconfig.cache
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV2X\complexes.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Debug\net6.0\DtsodV2X\messages.dtsod
|
||||
Binary file not shown.
@ -1 +0,0 @@
|
||||
110b26956cec2db2147da1aac6de7fa6068aaf46
|
||||
Binary file not shown.
Binary file not shown.
@ -1,4 +0,0 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
||||
@ -1,23 +0,0 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("TestProgram")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("TestProgram")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("TestProgram")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Создано классом WriteCodeFragment MSBuild.
|
||||
|
||||
@ -1 +0,0 @@
|
||||
71e6ecd41e783a12c9404d0d3374ab8ceaa08da7
|
||||
@ -1,10 +0,0 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = TestProgram
|
||||
build_property.ProjectDir = C:\projects\c#\DTLib\TestProgram\
|
||||
Binary file not shown.
Binary file not shown.
@ -1 +0,0 @@
|
||||
5e6dd8cc15282ea6ffd0b1be64a0c8a01cbd1096
|
||||
@ -1,23 +0,0 @@
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\TestProgram.exe
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV2X\base_types.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV2X\complexes.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV2X\lists.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV2X\null.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV30\base_types.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV30\enumerables.dtsod
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\TestProgram.deps.json
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\TestProgram.runtimeconfig.json
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\TestProgram.dll
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\TestProgram.pdb
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DTLib.dll
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DTLib.pdb
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.csproj.AssemblyReference.cache
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.AssemblyInfoInputs.cache
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.AssemblyInfo.cs
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.csproj.CoreCompileInputs.cache
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.csproj.CopyComplete
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.dll
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.pdb
|
||||
C:\projects\c#\DTLib\TestProgram\obj\Release\net6.0\TestProgram.genruntimeconfig.cache
|
||||
C:\projects\c#\DTLib\TestProgram\bin\Release\net6.0\DtsodV2X\messages.dtsod
|
||||
Binary file not shown.
@ -1 +0,0 @@
|
||||
f5c54d1bbfc32c8da26a865a6c9552c5a9c60697
|
||||
Binary file not shown.
Binary file not shown.
@ -1,130 +0,0 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj",
|
||||
"projectName": "DTLib",
|
||||
"projectPath": "C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj",
|
||||
"packagesPath": "C:\\Users\\User\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\projects\\c#\\DTLib\\DTLib\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.200-preview.21617.4\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj",
|
||||
"projectName": "TestProgram",
|
||||
"projectPath": "C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj",
|
||||
"packagesPath": "C:\\Users\\User\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\projects\\c#\\DTLib\\TestProgram\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {
|
||||
"C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj": {
|
||||
"projectPath": "C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.200-preview.21617.4\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,16 +0,0 @@
|
||||
<?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)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\User\.nuget\packages\;C:\Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\User\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@ -1,2 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||
@ -1,96 +0,0 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net6.0": {
|
||||
"DTLib/1.0.0": {
|
||||
"type": "project",
|
||||
"framework": ".NETCoreApp,Version=v6.0",
|
||||
"compile": {
|
||||
"bin/placeholder/DTLib.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"bin/placeholder/DTLib.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"DTLib/1.0.0": {
|
||||
"type": "project",
|
||||
"path": "../DTLib/DTLib.csproj",
|
||||
"msbuildProject": "../DTLib/DTLib.csproj"
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
"net6.0": [
|
||||
"DTLib >= 1.0.0"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\User\\.nuget\\packages\\": {},
|
||||
"C:\\Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj",
|
||||
"projectName": "TestProgram",
|
||||
"projectPath": "C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj",
|
||||
"packagesPath": "C:\\Users\\User\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\projects\\c#\\DTLib\\TestProgram\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\User\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net6.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"projectReferences": {
|
||||
"C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj": {
|
||||
"projectPath": "C:\\projects\\c#\\DTLib\\DTLib\\DTLib.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net6.0": {
|
||||
"targetAlias": "net6.0",
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.200-preview.21617.4\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,8 +0,0 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "XCSzHHOsQOko9mWN0tNtEKNCXf6qWGfWV8L1vM6F+eo4bY1LXQfp5Pnx8uTxl6nI5peW8Qj5d6BNh3WIQUSxMw==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\projects\\c#\\DTLib\\TestProgram\\TestProgram.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user