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
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