Error when creating a RustPluginSolved
So I am trying to get into developing plugins for rust and I was following a tutorial and I snooped around in plugins I downloaded and they all have this: "

using System;

namespace Oxide.Plugins
{
public class Class1 : RustPlugin{}}" but where I have "public class Class1 : RustPlugin" Rust plugin is giving me an error stating :
"The type object is defined in an assembly that is not referenced. You must add a reference to assembly 'netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51'  " what should I do

You need to save it as the name of the plugin... not Class1.

Example: Monkeys.cs

//References
using Rust;

namespace Oxide.Plugins
{
   //Name, Author, Version
    [Info("Moneys", "MikeHawke", "1.0.0")]
   //Description
    [Description("Monkeys on the sever")]
   //Class
    class Monkeys : RustPlugin
    {


Merged post

Have a good look through the Documentation... 

https://umod.org/documentation/api/getting-started

Locked automatically