Created
September 27, 2018 16:10
-
-
Save StagPoint/3b554a946c3c1b5acd8a9f06c4cb8df5 to your computer and use it in GitHub Desktop.
Use "#pragma warning disable 1591" to suppress "Missing XML comment for publicly visible type or member" warnings in Visual Studio when using Unity
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Disable all XML Comment warnings in this file, because Unity won't allow us to turn this bullshit off and keeps overwriting our settings // | |
#pragma warning disable 1591 | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class NewBehaviourScript : MonoBehaviour | |
{ | |
// Use this for initialization | |
private void Start() | |
{ | |
} | |
// Update is called once per frame | |
private void Update() | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment