source code folder

added sln file so everyone can just add their cs file to it
This commit is contained in:
Im_Alpha 2021-12-03 14:25:53 -08:00
parent 4815fb669b
commit a78b0b8f10
29 changed files with 335 additions and 0 deletions

View File

@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}

View File

@ -0,0 +1,16 @@
{
"Version": 1,
"ProjectMap": {
"a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": {
"ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3",
"DisplayName": "Miscellaneous Files",
"ColorIndex": -1
},
"4ba6b529-398f-4b31-a2c8-483c1c57888d": {
"ProjectGuid": "4ba6b529-398f-4b31-a2c8-483c1c57888d",
"DisplayName": "TeamHobby.HobbyProjectGenerator.UserManagement",
"ColorIndex": 0
}
},
"NextColorIndex": 1
}

View File

@ -0,0 +1,8 @@
{
"ExpandedNodes": [
"",
"\\TeamHobby.HobbyProjectGenerator.UserManagement"
],
"SelectedNode": "\\TeamHobby.HobbyProjectGenerator.sln",
"PreviewInSolutionExplorer": false
}

View File

@ -0,0 +1,6 @@
namespace TeamHobby.HobbyProjectGenerator.UserManagement;
public class Class1
{
}

View File

@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>True</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

View File

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("TeamHobby.HobbyProjectGenerator.UserManagement")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("TeamHobby.HobbyProjectGenerator.UserManagement")]
[assembly: System.Reflection.AssemblyTitleAttribute("TeamHobby.HobbyProjectGenerator.UserManagement")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -0,0 +1,10 @@
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 = TeamHobby.HobbyProjectGenerator.UserManagement
build_property.ProjectDir = C:\Users\arcjc\Documents\GitHub\HobbyProject\Source Code\TeamHobby.HobbyProjectGenerator\TeamHobby.HobbyProjectGenerator.UserManagement\

View File

@ -0,0 +1,8 @@
// <auto-generated/>
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.Threading;
global using global::System.Threading.Tasks;

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

View File

@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("TeamHobby.HobbyProjectGenerator.UserManagement")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("TeamHobby.HobbyProjectGenerator.UserManagement")]
[assembly: System.Reflection.AssemblyTitleAttribute("TeamHobby.HobbyProjectGenerator.UserManagement")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@ -0,0 +1,10 @@
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 = TeamHobby.HobbyProjectGenerator.UserManagement
build_property.ProjectDir = C:\Users\arcjc\Documents\GitHub\HobbyProject\Source Code\TeamHobby.HobbyProjectGenerator\TeamHobby.HobbyProjectGenerator.UserManagement\

View File

@ -0,0 +1,8 @@
// <auto-generated/>
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.Threading;
global using global::System.Threading.Tasks;

View File

@ -0,0 +1,66 @@
{
"format": 1,
"restore": {
"C:\\Users\\arcjc\\Documents\\GitHub\\HobbyProject\\Source Code\\TeamHobby.HobbyProjectGenerator\\TeamHobby.HobbyProjectGenerator.UserManagement\\TeamHobby.HobbyProjectGenerator.UserManagement.csproj": {}
},
"projects": {
"C:\\Users\\arcjc\\Documents\\GitHub\\HobbyProject\\Source Code\\TeamHobby.HobbyProjectGenerator\\TeamHobby.HobbyProjectGenerator.UserManagement\\TeamHobby.HobbyProjectGenerator.UserManagement.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\arcjc\\Documents\\GitHub\\HobbyProject\\Source Code\\TeamHobby.HobbyProjectGenerator\\TeamHobby.HobbyProjectGenerator.UserManagement\\TeamHobby.HobbyProjectGenerator.UserManagement.csproj",
"projectName": "TeamHobby.HobbyProjectGenerator.UserManagement",
"projectPath": "C:\\Users\\arcjc\\Documents\\GitHub\\HobbyProject\\Source Code\\TeamHobby.HobbyProjectGenerator\\TeamHobby.HobbyProjectGenerator.UserManagement\\TeamHobby.HobbyProjectGenerator.UserManagement.csproj",
"packagesPath": "C:\\Users\\arcjc\\.nuget\\packages\\",
"outputPath": "C:\\Users\\arcjc\\Documents\\GitHub\\HobbyProject\\Source Code\\TeamHobby.HobbyProjectGenerator\\TeamHobby.HobbyProjectGenerator.UserManagement\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\arcjc\\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\\": {},
"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.100\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@ -0,0 +1,19 @@
<?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\arcjc\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.11.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\arcjc\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
</ItemGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,72 @@
{
"version": 3,
"targets": {
"net6.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net6.0": []
},
"packageFolders": {
"C:\\Users\\arcjc\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\arcjc\\Documents\\GitHub\\HobbyProject\\Source Code\\TeamHobby.HobbyProjectGenerator\\TeamHobby.HobbyProjectGenerator.UserManagement\\TeamHobby.HobbyProjectGenerator.UserManagement.csproj",
"projectName": "TeamHobby.HobbyProjectGenerator.UserManagement",
"projectPath": "C:\\Users\\arcjc\\Documents\\GitHub\\HobbyProject\\Source Code\\TeamHobby.HobbyProjectGenerator\\TeamHobby.HobbyProjectGenerator.UserManagement\\TeamHobby.HobbyProjectGenerator.UserManagement.csproj",
"packagesPath": "C:\\Users\\arcjc\\.nuget\\packages\\",
"outputPath": "C:\\Users\\arcjc\\Documents\\GitHub\\HobbyProject\\Source Code\\TeamHobby.HobbyProjectGenerator\\TeamHobby.HobbyProjectGenerator.UserManagement\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\arcjc\\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\\": {},
"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.100\\RuntimeIdentifierGraph.json"
}
}
}
}

View File

@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "7uiYQA4+T7L4hMLWncELrL069SxbHYRMjL/pfy3i1Zc1LV/QlJU/47YAenUx82JBIToRPnQwA5ptx96phoMFRQ==",
"success": true,
"projectFilePath": "C:\\Users\\arcjc\\Documents\\GitHub\\HobbyProject\\Source Code\\TeamHobby.HobbyProjectGenerator\\TeamHobby.HobbyProjectGenerator.UserManagement\\TeamHobby.HobbyProjectGenerator.UserManagement.csproj",
"expectedPackageFiles": [],
"logs": []
}

View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31911.196
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TeamHobby.HobbyProjectGenerator.UserManagement", "TeamHobby.HobbyProjectGenerator.UserManagement\TeamHobby.HobbyProjectGenerator.UserManagement.csproj", "{4BA6B529-398F-4B31-A2C8-483C1C57888D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4BA6B529-398F-4B31-A2C8-483C1C57888D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4BA6B529-398F-4B31-A2C8-483C1C57888D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4BA6B529-398F-4B31-A2C8-483C1C57888D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4BA6B529-398F-4B31-A2C8-483C1C57888D}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F4EB50A6-99DB-4730-BE77-D8ACDF416268}
EndGlobalSection
EndGlobal