Restructure
This commit is contained in:
parent
437cc0e0e1
commit
da91200c74
16 changed files with 43 additions and 110 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,6 +4,7 @@
|
||||||
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
||||||
|
|
||||||
# User-specific files
|
# User-specific files
|
||||||
|
Assembly/ASMInfo.cs
|
||||||
*.rsuser
|
*.rsuser
|
||||||
*.suo
|
*.suo
|
||||||
*.user
|
*.user
|
||||||
|
|
29
Bot.csproj
Normal file
29
Bot.csproj
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>netcoreapp3.0</TargetFramework>
|
||||||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
||||||
|
<PackageReference Include="System.Threading.Channels" Version="4.7.0" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="LibreMetaverse">
|
||||||
|
<HintPath>..\..\libremetaverse\bin\netcoreapp3.0\LibreMetaverse.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="LibreMetaverse.StructuredData">
|
||||||
|
<HintPath>..\..\libremetaverse\bin\netcoreapp3.0\LibreMetaverse.StructuredData.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="LibreMetaverse.Types">
|
||||||
|
<HintPath>..\..\libremetaverse\bin\netcoreapp3.0\LibreMetaverse.Types.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="LibreMetaverse.Utilities">
|
||||||
|
<HintPath>..\..\libremetaverse\bin\netcoreapp3.0\LibreMetaverse.Utilities.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
|
@ -1,10 +1,4 @@
|
||||||
/*
|
using System;
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
|
@ -1,11 +1,4 @@
|
||||||
/*
|
using System;
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,4 @@
|
||||||
/*
|
using System;
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
|
@ -1,11 +1,4 @@
|
||||||
/*
|
using System;
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using OpenMetaverse;
|
using OpenMetaverse;
|
|
@ -1,9 +1,4 @@
|
||||||
/*
|
using System;
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
|
@ -1,10 +1,4 @@
|
||||||
/*
|
using System;
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
|
@ -1,9 +1,4 @@
|
||||||
/*
|
using System;
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
|
@ -1,9 +1,4 @@
|
||||||
/*
|
using System;
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
|
@ -1,10 +1,4 @@
|
||||||
|
using System;
|
||||||
/*
|
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
|
@ -1,10 +1,4 @@
|
||||||
/*
|
using System;
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
|
@ -1,10 +1,4 @@
|
||||||
/*
|
using Bot.CommandSystem;
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
using Bot.CommandSystem;
|
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using OpenMetaverse;
|
using OpenMetaverse;
|
||||||
using System;
|
using System;
|
|
@ -1,10 +1,4 @@
|
||||||
/*
|
using System;
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
|
@ -1,19 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace Bot.Assemble
|
|
||||||
{
|
|
||||||
public class ASMInfo
|
|
||||||
{
|
|
||||||
public static string BotName = "ZBotCore";
|
|
||||||
public static double BotVer = 5.0;
|
|
||||||
public static string GitPassword = "**REMOVED**";
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,10 +1,4 @@
|
||||||
/*
|
using System;
|
||||||
Copyright © 2019 Tara Piccari (Aria; Tashia Redrose)
|
|
||||||
Licensed under the AGPL-3.0
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue