ITP Code Backup
This commit is contained in:
BIN
CharacterSheet/.vs/CharacterSheet/DesignTimeBuild/.dtbcache.v2
Normal file
BIN
CharacterSheet/.vs/CharacterSheet/DesignTimeBuild/.dtbcache.v2
Normal file
Binary file not shown.
Binary file not shown.
BIN
CharacterSheet/.vs/CharacterSheet/v17/.futdcache.v1
Normal file
BIN
CharacterSheet/.vs/CharacterSheet/v17/.futdcache.v1
Normal file
Binary file not shown.
BIN
CharacterSheet/.vs/ProjectEvaluation/charactersheet.metadata.v2
Normal file
BIN
CharacterSheet/.vs/ProjectEvaluation/charactersheet.metadata.v2
Normal file
Binary file not shown.
BIN
CharacterSheet/.vs/ProjectEvaluation/charactersheet.projects.v2
Normal file
BIN
CharacterSheet/.vs/ProjectEvaluation/charactersheet.projects.v2
Normal file
Binary file not shown.
25
CharacterSheet/CharacterSheet.sln
Normal file
25
CharacterSheet/CharacterSheet.sln
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.1.32210.238
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CharacterSheet", "CharacterSheet\CharacterSheet.csproj", "{000A0903-9A4C-4C23-B7E6-CE36233BAB6C}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{000A0903-9A4C-4C23-B7E6-CE36233BAB6C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{000A0903-9A4C-4C23-B7E6-CE36233BAB6C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{000A0903-9A4C-4C23-B7E6-CE36233BAB6C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{000A0903-9A4C-4C23-B7E6-CE36233BAB6C}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {40CBBD85-D294-4231-B704-EA36F53BAE93}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
55
CharacterSheet/CharacterSheet/CharacterSheet.cs
Normal file
55
CharacterSheet/CharacterSheet/CharacterSheet.cs
Normal file
@@ -0,0 +1,55 @@
|
||||
Console.Title = "Character Sheet";
|
||||
Console.WindowHeight = 40;
|
||||
Console.WindowWidth = 100;
|
||||
Console.SetBufferSize(100,40);
|
||||
|
||||
// Decaring variables
|
||||
string characterFirstName;
|
||||
string characterLastName;
|
||||
string characterSpecies;
|
||||
int characterAge;
|
||||
float characterHeightMeters;
|
||||
string characterBackStory;
|
||||
|
||||
// Assigning variables
|
||||
characterAge = 31;
|
||||
characterHeightMeters = 1.67f;
|
||||
|
||||
// Defining variables
|
||||
char characterMiddleInitial = 'W';
|
||||
int characterAbility = 14;
|
||||
int characterKnowledge = 19;
|
||||
int characterStreetSmarts = 13;
|
||||
int characterWit = 13;
|
||||
|
||||
// Accepting input
|
||||
Console.WriteLine("What is your character's first name?");
|
||||
characterFirstName = Console.ReadLine();
|
||||
Console.WriteLine("What is your character's last name?");
|
||||
characterLastName = Console.ReadLine();
|
||||
Console.WriteLine("What is your characters species?");
|
||||
characterSpecies = Console.ReadLine();
|
||||
Console.Clear();
|
||||
characterBackStory = $"{characterFirstName} {characterMiddleInitial} {characterLastName} is a {characterSpecies} and is an agent of chaos. Standing at just over {characterHeightMeters}, and {characterAge} years\nof age, they have gotten pretty good at sowing chaos around them. With {characterWit} years of wit gained\nover {characterKnowledge} years of focused knowledge, talking his way into and out of any situation is now a breeze.\nTheir {characterStreetSmarts} years of street smarts are just an added bonus. Even though relatively young in {characterSpecies},\nthe {characterSpecies} Lord rates their overall ability at creating chaos at a {characterAbility} out of 20.";
|
||||
|
||||
|
||||
// String interpolation
|
||||
Console.ForegroundColor = ConsoleColor.Cyan;
|
||||
Console.WriteLine("+CHARACTER SHEET***********************************************************************************+");
|
||||
Console.ForegroundColor = ConsoleColor.DarkCyan;
|
||||
Console.WriteLine($"Name: \t\t{characterFirstName} {characterLastName}");
|
||||
Console.WriteLine($"Age: \t\t{characterAge}");
|
||||
Console.WriteLine($"Height: \t{characterHeightMeters}");
|
||||
Console.WriteLine($"Wit: \t\t{characterWit}");
|
||||
Console.WriteLine($"Ability: \t{characterAbility}");
|
||||
Console.WriteLine($"Knowledge: \t{characterKnowledge}");
|
||||
Console.WriteLine($"Street Smarts: \t{characterStreetSmarts}");
|
||||
Console.ForegroundColor = ConsoleColor.Cyan;
|
||||
Console.WriteLine("+**************************************************************************************************+");
|
||||
Console.WriteLine();
|
||||
Console.ForegroundColor = ConsoleColor.DarkYellow;
|
||||
Console.WriteLine("BACK STORY");
|
||||
Console.ForegroundColor = ConsoleColor.Yellow;
|
||||
Console.WriteLine(characterBackStory);
|
||||
Console.ForegroundColor = ConsoleColor.White;
|
||||
|
10
CharacterSheet/CharacterSheet/CharacterSheet.csproj
Normal file
10
CharacterSheet/CharacterSheet/CharacterSheet.csproj
Normal file
@@ -0,0 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
@@ -0,0 +1,65 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"E:\\Projects\\FS_College_Classwork\\GDN1009-ITP-Backup\\CharacterSheet\\CharacterSheet\\CharacterSheet.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"E:\\Projects\\FS_College_Classwork\\GDN1009-ITP-Backup\\CharacterSheet\\CharacterSheet\\CharacterSheet.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\Projects\\FS_College_Classwork\\GDN1009-ITP-Backup\\CharacterSheet\\CharacterSheet\\CharacterSheet.csproj",
|
||||
"projectName": "CharacterSheet",
|
||||
"projectPath": "E:\\Projects\\FS_College_Classwork\\GDN1009-ITP-Backup\\CharacterSheet\\CharacterSheet\\CharacterSheet.csproj",
|
||||
"packagesPath": "C:\\Users\\randa\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\Projects\\FS_College_Classwork\\GDN1009-ITP-Backup\\CharacterSheet\\CharacterSheet\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\randa\\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\\": {}
|
||||
},
|
||||
"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.302\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@@ -0,0 +1,16 @@
|
||||
<?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\randa\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\randa\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</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" />
|
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
@@ -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("CharacterSheet")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("CharacterSheet")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("CharacterSheet")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
@@ -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 = CharacterSheet
|
||||
build_property.ProjectDir = E:\Projects\FS_College_Classwork\GDN1009-ITP-Backup\CharacterSheet\CharacterSheet\
|
@@ -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;
|
71
CharacterSheet/CharacterSheet/obj/project.assets.json
Normal file
71
CharacterSheet/CharacterSheet/obj/project.assets.json
Normal file
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net6.0": {}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net6.0": []
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\randa\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\Projects\\FS_College_Classwork\\GDN1009-ITP-Backup\\CharacterSheet\\CharacterSheet\\CharacterSheet.csproj",
|
||||
"projectName": "CharacterSheet",
|
||||
"projectPath": "E:\\Projects\\FS_College_Classwork\\GDN1009-ITP-Backup\\CharacterSheet\\CharacterSheet\\CharacterSheet.csproj",
|
||||
"packagesPath": "C:\\Users\\randa\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\Projects\\FS_College_Classwork\\GDN1009-ITP-Backup\\CharacterSheet\\CharacterSheet\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\randa\\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\\": {}
|
||||
},
|
||||
"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.302\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user