Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(inputs/filenames): Remove symbols from folder and file names #7

Merged
merged 4 commits into from
Mar 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,25 +1,30 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29728.190
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "vorpinputs_cl", "vorpinputs_cl\vorpinputs_cl.csproj", "{61F282D4-73FB-475F-899F-D78C6A9E26E8}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{61F282D4-73FB-475F-899F-D78C6A9E26E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{61F282D4-73FB-475F-899F-D78C6A9E26E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{61F282D4-73FB-475F-899F-D78C6A9E26E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{61F282D4-73FB-475F-899F-D78C6A9E26E8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8B2E417D-43F5-4681-BC90-AB32F193871A}
EndGlobalSection
EndGlobal

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VorpInputs", "vorpinputs_cl\VorpInputs.csproj", "{61F282D4-73FB-475F-899F-D78C6A9E26E8}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{93AE76B0-766B-46A2-BCCF-787F0FF054F8}"
ProjectSection(SolutionItems) = preProject
..\.gitignore = ..\.gitignore
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{61F282D4-73FB-475F-899F-D78C6A9E26E8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{61F282D4-73FB-475F-899F-D78C6A9E26E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{61F282D4-73FB-475F-899F-D78C6A9E26E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{61F282D4-73FB-475F-899F-D78C6A9E26E8}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8B2E417D-43F5-4681-BC90-AB32F193871A}
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Newtonsoft.Json;
using System.Runtime.Serialization;

namespace vorpinputs_cl.Models
namespace VorpInputs.Models
{
[DataContract]
public class InputMessage
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
using System;
using System.Dynamic;
using System.Threading.Tasks;
using vorpinputs_cl.Models;
using VorpInputs.Models;

namespace vorpinputs_cl
namespace VorpInputs
{
public class VorpInputs : BaseScript
public class Plugin : BaseScript
{
static string text = null;

public VorpInputs()
public Plugin()
{
API.RegisterCommand("closeinput", new Action(CloseInput), false);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ProjectGuid>{61F282D4-73FB-475F-899F-D78C6A9E26E8}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>vorpinputs_cl</RootNamespace>
<RootNamespace>VorpInputs</RootNamespace>
<AssemblyName>vorpinputs_cl.net</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
Expand Down Expand Up @@ -52,7 +52,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Models\InputMessage.cs" />
<Compile Include="VorpInputs.cs" />
<Compile Include="Plugin.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.