Update .gitignore and project paths for consistency
This commit is contained in:
+56
-1
@@ -1,8 +1,63 @@
|
|||||||
# Ignore all .log files
|
# Ignore all .log files
|
||||||
*.log
|
*.log
|
||||||
|
|
||||||
|
# Ignore all .tmp files
|
||||||
|
*.tmp
|
||||||
|
|
||||||
|
# Ignore all .swp, .swn, and .swx files
|
||||||
|
*.swp
|
||||||
|
*.swn
|
||||||
|
*.swx
|
||||||
# Ignore the node_modules directory
|
# Ignore the node_modules directory
|
||||||
node_modules/
|
node_modules/
|
||||||
|
|
||||||
# Ignore all files in the temp directory
|
# Ignore all files in the temp directory
|
||||||
temp/
|
temp/
|
||||||
|
|
||||||
|
# Ignore all files in the bin and obj directories, which are generated during build
|
||||||
|
bin/
|
||||||
|
obj/
|
||||||
|
|
||||||
|
# Ignore all files in the Temp directory, which may be created by the .NET Framework
|
||||||
|
Temp/
|
||||||
|
|
||||||
|
# Ignore all files in the Release and Debug directories, which are often used for builds
|
||||||
|
Release/
|
||||||
|
Debug/
|
||||||
|
|
||||||
|
# Ignore the app.config file, which is often used to store configuration settings
|
||||||
|
#app.config
|
||||||
|
|
||||||
|
# Ignore the project.lock.json and project.assets.json files, which are used by NuGet
|
||||||
|
project.lock.json
|
||||||
|
project.assets.json
|
||||||
|
|
||||||
|
# Ignore all files in the _ReSharper directory, which is used by ReSharper
|
||||||
|
_ReSharper/
|
||||||
|
|
||||||
|
# Ignore the .vs directory, which is used by Visual Studio
|
||||||
|
.vs/
|
||||||
|
|
||||||
|
# Ignore the .user file, which may contain user-specific settings for the project
|
||||||
|
*.user
|
||||||
|
|
||||||
|
# Ignore the .suo file, which contains solution-specific user options
|
||||||
|
*.suo
|
||||||
|
|
||||||
|
# Ignore the .userprefs file, which may contain user-specific preferences
|
||||||
|
*.userprefs
|
||||||
|
|
||||||
|
# Ignore all files in the .git directory, which is used by Git
|
||||||
|
.git/
|
||||||
|
|
||||||
|
# Ignore all files with a .vscode directory, which is used by Visual Studio Code
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
# Ignore all files with a .DS_Store file, which is specific to macOS
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Ignore all files with a Thumbs.db file, which is specific to Windows Explorer
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Ignore all files with a _svn directory, which is used by Subversion
|
||||||
|
_svn/
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("ResourceMonitorService")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("ResourceMonitorService")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f16578d19a39c4688f17fdac49af6472a49fec57")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7dc90104512834ceb810324f20a2b5d12de354c0")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("ResourceMonitorService")]
|
[assembly: System.Reflection.AssemblyProductAttribute("ResourceMonitorService")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("ResourceMonitorService")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("ResourceMonitorService")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
50d6f72955ce0876a69442b6c335ff08ea368766fc97b2037cc37144294afbbe
|
1212cb7eab016db3876a66a85bc18562ffabead52c3b48120f48f729d68cf190
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ build_property.PlatformNeutralAssembly =
|
|||||||
build_property.EnforceExtendedAnalyzerRules =
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
build_property.RootNamespace = ResourceMonitorService
|
build_property.RootNamespace = ResourceMonitorService
|
||||||
build_property.ProjectDir = D:\din\dev\vmsvc\ResourceMonitorService\
|
build_property.ProjectDir = C:\Work\DEV\ResourceUsageAPI\
|
||||||
build_property.EnableComHosting =
|
build_property.EnableComHosting =
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
build_property.EffectiveAnalysisLevelStyle = 9.0
|
build_property.EffectiveAnalysisLevelStyle = 9.0
|
||||||
|
|||||||
Binary file not shown.
@@ -1,17 +1,17 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"D:\\din\\dev\\vmsvc\\ResourceMonitorService\\ResourceMonitorService.csproj": {}
|
"C:\\Work\\DEV\\ResourceUsageAPI\\ResourceMonitorService.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"D:\\din\\dev\\vmsvc\\ResourceMonitorService\\ResourceMonitorService.csproj": {
|
"C:\\Work\\DEV\\ResourceUsageAPI\\ResourceMonitorService.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "D:\\din\\dev\\vmsvc\\ResourceMonitorService\\ResourceMonitorService.csproj",
|
"projectUniqueName": "C:\\Work\\DEV\\ResourceUsageAPI\\ResourceMonitorService.csproj",
|
||||||
"projectName": "ResourceMonitorService",
|
"projectName": "ResourceMonitorService",
|
||||||
"projectPath": "D:\\din\\dev\\vmsvc\\ResourceMonitorService\\ResourceMonitorService.csproj",
|
"projectPath": "C:\\Work\\DEV\\ResourceUsageAPI\\ResourceMonitorService.csproj",
|
||||||
"packagesPath": "C:\\Users\\dinxs\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\dinxs\\.nuget\\packages\\",
|
||||||
"outputPath": "D:\\din\\dev\\vmsvc\\ResourceMonitorService\\obj\\",
|
"outputPath": "C:\\Work\\DEV\\ResourceUsageAPI\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"C:\\Users\\dinxs\\AppData\\Roaming\\NuGet\\NuGet.Config"
|
"C:\\Users\\dinxs\\AppData\\Roaming\\NuGet\\NuGet.Config"
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
"restoreAuditProperties": {
|
"restoreAuditProperties": {
|
||||||
"enableAudit": "true",
|
"enableAudit": "true",
|
||||||
"auditLevel": "low",
|
"auditLevel": "low",
|
||||||
"auditMode": "all"
|
"auditMode": "direct"
|
||||||
},
|
},
|
||||||
"SdkAnalysisLevel": "9.0.100"
|
"SdkAnalysisLevel": "9.0.100"
|
||||||
},
|
},
|
||||||
@@ -81,7 +81,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.100/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\dinxs\.nuget\packages\</NuGetPackageFolders>
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\dinxs\.nuget\packages\</NuGetPackageFolders>
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.0</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<SourceRoot Include="C:\Users\dinxs\.nuget\packages\" />
|
<SourceRoot Include="C:\Users\dinxs\.nuget\packages\" />
|
||||||
|
|||||||
@@ -2087,11 +2087,11 @@
|
|||||||
"project": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "D:\\din\\dev\\vmsvc\\ResourceMonitorService\\ResourceMonitorService.csproj",
|
"projectUniqueName": "C:\\Work\\DEV\\ResourceUsageAPI\\ResourceMonitorService.csproj",
|
||||||
"projectName": "ResourceMonitorService",
|
"projectName": "ResourceMonitorService",
|
||||||
"projectPath": "D:\\din\\dev\\vmsvc\\ResourceMonitorService\\ResourceMonitorService.csproj",
|
"projectPath": "C:\\Work\\DEV\\ResourceUsageAPI\\ResourceMonitorService.csproj",
|
||||||
"packagesPath": "C:\\Users\\dinxs\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\dinxs\\.nuget\\packages\\",
|
||||||
"outputPath": "D:\\din\\dev\\vmsvc\\ResourceMonitorService\\obj\\",
|
"outputPath": "C:\\Work\\DEV\\ResourceUsageAPI\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"C:\\Users\\dinxs\\AppData\\Roaming\\NuGet\\NuGet.Config"
|
"C:\\Users\\dinxs\\AppData\\Roaming\\NuGet\\NuGet.Config"
|
||||||
@@ -2116,7 +2116,7 @@
|
|||||||
"restoreAuditProperties": {
|
"restoreAuditProperties": {
|
||||||
"enableAudit": "true",
|
"enableAudit": "true",
|
||||||
"auditLevel": "low",
|
"auditLevel": "low",
|
||||||
"auditMode": "all"
|
"auditMode": "direct"
|
||||||
},
|
},
|
||||||
"SdkAnalysisLevel": "9.0.100"
|
"SdkAnalysisLevel": "9.0.100"
|
||||||
},
|
},
|
||||||
@@ -2161,7 +2161,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.100/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.101/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "pmjCqcyUh78=",
|
"dgSpecHash": "21qKVFLqEJQ=",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "D:\\din\\dev\\vmsvc\\ResourceMonitorService\\ResourceMonitorService.csproj",
|
"projectFilePath": "C:\\Work\\DEV\\ResourceUsageAPI\\ResourceMonitorService.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\dinxs\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\9.0.0\\microsoft.aspnetcore.jsonpatch.9.0.0.nupkg.sha512",
|
"C:\\Users\\dinxs\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\9.0.0\\microsoft.aspnetcore.jsonpatch.9.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\dinxs\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\9.0.0\\microsoft.aspnetcore.mvc.newtonsoftjson.9.0.0.nupkg.sha512",
|
"C:\\Users\\dinxs\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\9.0.0\\microsoft.aspnetcore.mvc.newtonsoftjson.9.0.0.nupkg.sha512",
|
||||||
|
|||||||
Reference in New Issue
Block a user