Mal.Mdk2.ModAnalyzers
2.1.3
See the version list below for details.
dotnet add package Mal.Mdk2.ModAnalyzers --version 2.1.3
NuGet\Install-Package Mal.Mdk2.ModAnalyzers -Version 2.1.3
<PackageReference Include="Mal.Mdk2.ModAnalyzers" Version="2.1.3" />
paket add Mal.Mdk2.ModAnalyzers --version 2.1.3
#r "nuget: Mal.Mdk2.ModAnalyzers, 2.1.3"
// Install Mal.Mdk2.ModAnalyzers as a Cake Addin #addin nuget:?package=Mal.Mdk2.ModAnalyzers&version=2.1.3 // Install Mal.Mdk2.ModAnalyzers as a Cake Tool #tool nuget:?package=Mal.Mdk2.ModAnalyzers&version=2.1.3
MDK Analyzers
The game Space Engineers (by Keen Software House, no affiliation) supports scripting and modding using the C# language, but limited by a built-in whitelist to protect against dangerous or destructive code. This analyzer aims to inform the developer when they're trying to use parts of the .NET framework or game API they are not allowed to use.
This package is part of the MDK2 project.
Usage:
Simply reference the nuget package in your mod project. It should automatically start analyzing your project.
Nuget unfortunately does not notify you when there's updates to nuget packages, so you should check manually now and again, especially after game updates.
Ignoring paths and folders
Edit your project file. Within the first <PropertyGroup>, add
<Mdk-IgnorePaths>$(Mdk-IgnorePaths)|PathToIgnore\**\*</Mdk-IgnorePaths>
Everything in that path, recursively, will now be ignored by the analyzer.
Add multiple patterns with |
:
<Mdk-IgnorePaths>$(Mdk-IgnorePaths)|FirstPath\**\*|**\*.debug.cs</Mdk-IgnorePaths>
Including the $(Mdk-IgnorePaths) will add to the ignore list rather than replace it.
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
v.2.1.3
- _Someone_ left in a debugger call...
v.2.1.2
- New whitelist cache was actually _not_ embedded...
- Fixed <Mdk-IgnorePaths> not actually working for multipaths because ; is a reserved character
V.2.1.1
- Fixed bad default ignore path
V.2.1.0
- Nuget Rename (I am _so_ sorry, it had to be done, won't happen again, I promise)
- Added support for <Mdk-IgnorePaths> (see readme for instructions)
- Updated whitelist cache