Skip to content
This repository has been archived by the owner on Nov 10, 2021. It is now read-only.

Commit

Permalink
Renamed UtilityLibrary.Test to UtilityLibrary.Example
Browse files Browse the repository at this point in the history
  • Loading branch information
erri120 committed May 18, 2020
1 parent e7808dd commit cb2fd9d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Utility Library.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VisualStudioVersion = 16.0.30104.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UtilityLibrary", "UtilityLibrary\UtilityLibrary.csproj", "{D76AB2C4-39E1-4097-9C95-B41EEF91BE3C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UtilityLibrary.Test", "UtilityLibrary.Test\UtilityLibrary.Test.csproj", "{C41E4E5E-AB08-4813-8185-9C6536746443}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UtilityLibrary.Example", "UtilityLibrary.Test\UtilityLibrary.Example.csproj", "{C41E4E5E-AB08-4813-8185-9C6536746443}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
6 changes: 3 additions & 3 deletions UtilityLibrary.Test/Plugin.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
namespace UtilityLibrary.Test
namespace UtilityLibrary.Example
{
public class Plugin : NetScriptFramework.Plugin
{
public override string Key => "utility.library.test";
public static string PluginName => "Utility Library (TEST)";
public override string Key => "utility.library.example";
public static string PluginName => "Utility Library (EXAMPLE)";
public override string Name => PluginName;
public override int Version => 1;

Expand Down
10 changes: 5 additions & 5 deletions UtilityLibrary.Test/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("UtilityLibrary.Test")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyTitle("UtilityLibrary.Example")]
[assembly: AssemblyDescription("Exmaple plugin for Utility Library")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("UtilityLibrary.Test")]
[assembly: AssemblyCopyright("Copyright © 2020")]
[assembly: AssemblyCompany("erri120")]
[assembly: AssemblyProduct("UtilityLibrary.Example")]
[assembly: AssemblyCopyright("Copyright © erri120 2020")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<ProjectGuid>{C41E4E5E-AB08-4813-8185-9C6536746443}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>UtilityLibrary.Test</RootNamespace>
<AssemblyName>UtilityLibrary.Test</AssemblyName>
<RootNamespace>UtilityLibrary.Example</RootNamespace>
<AssemblyName>UtilityLibrary.Example</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic>
Expand Down
2 changes: 1 addition & 1 deletion UtilityLibrary.Test/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections.Generic;
using NetScriptFramework.Tools;

namespace UtilityLibrary.Test
namespace UtilityLibrary.Example
{
internal static class Utils
{
Expand Down

0 comments on commit cb2fd9d

Please sign in to comment.