Created new brunch. Plug in Rider's version control

This commit is contained in:
TextusGames 2020-05-16 18:18:03 +03:00
parent 925fe29da1
commit dead48d75e
2 changed files with 3 additions and 1 deletions

3
.gitignore vendored
View File

@ -7,10 +7,11 @@
[Tt]emp/
[Oo]bj/
[Bb]uild/
[Bb]uilds/
[Bb]uilds/
[Ll]ogs/
[Mm]emoryCaptures/
.[Ii]dea/
[Pp]rojectSettings/
[Pp]ackages/

View File

@ -10,6 +10,7 @@ public static class SerializeReferenceTypeNameUtility
var realType = Type.GetType($"{names.ClassName}, {names.AssemblyName}");
return realType;
}
public static (string AssemblyName, string ClassName) GetSplitNamesFromTypename(string typename)
{
if (string.IsNullOrEmpty(typename))