123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Security;
- using System.Security.Cryptography;
- using System.Text;
- using System.Text.RegularExpressions;
- using UnityEditor;
- using UnityEditor.Compilation;
- using UnityEditor.PackageManager;
- using UnityEditorInternal;
- using UnityEngine;
- using UnityEngine.Profiling;
- namespace VSCodeEditor
- {
- public interface IGenerator {
- bool SyncIfNeeded(IEnumerable<string> affectedFiles, IEnumerable<string> reimportedFiles);
- void Sync();
- bool HasSolutionBeenGenerated();
- string SolutionFile();
- string ProjectDirectory { get; }
- void GenerateAll(bool generateAll);
- }
- public interface IAssemblyNameProvider
- {
- string GetAssemblyNameFromScriptPath(string path);
- IEnumerable<Assembly> GetAllAssemblies(Func<string, bool> shouldFileBePartOfSolution);
- IEnumerable<string> GetAllAssetPaths();
- UnityEditor.PackageManager.PackageInfo FindForAssetPath(string assetPath);
- }
- public struct TestSettings {
- public bool ShouldSync;
- public Dictionary<string, string> SyncPath;
- }
- class AssemblyNameProvider : IAssemblyNameProvider
- {
- public string GetAssemblyNameFromScriptPath(string path)
- {
- return CompilationPipeline.GetAssemblyNameFromScriptPath(path);
- }
- public IEnumerable<Assembly> GetAllAssemblies(Func<string, bool> shouldFileBePartOfSolution)
- {
- return CompilationPipeline.GetAssemblies().Where(i => 0 < i.sourceFiles.Length && i.sourceFiles.Any(shouldFileBePartOfSolution));
- }
- public IEnumerable<string> GetAllAssetPaths()
- {
- return AssetDatabase.GetAllAssetPaths();
- }
- public UnityEditor.PackageManager.PackageInfo FindForAssetPath(string assetPath)
- {
- return UnityEditor.PackageManager.PackageInfo.FindForAssetPath(assetPath);
- }
- }
- public class ProjectGeneration : IGenerator
- {
- enum ScriptingLanguage
- {
- None,
- CSharp
- }
- public static readonly string MSBuildNamespaceUri = "http://schemas.microsoft.com/developer/msbuild/2003";
- const string k_WindowsNewline = "\r\n";
- const string k_SettingsJson = @"{
- ""files.exclude"":
- {
- ""**/.DS_Store"":true,
- ""**/.git"":true,
- ""**/.gitignore"":true,
- ""**/.gitmodules"":true,
- ""**/*.booproj"":true,
- ""**/*.pidb"":true,
- ""**/*.suo"":true,
- ""**/*.user"":true,
- ""**/*.userprefs"":true,
- ""**/*.unityproj"":true,
- ""**/*.dll"":true,
- ""**/*.exe"":true,
- ""**/*.pdf"":true,
- ""**/*.mid"":true,
- ""**/*.midi"":true,
- ""**/*.wav"":true,
- ""**/*.gif"":true,
- ""**/*.ico"":true,
- ""**/*.jpg"":true,
- ""**/*.jpeg"":true,
- ""**/*.png"":true,
- ""**/*.psd"":true,
- ""**/*.tga"":true,
- ""**/*.tif"":true,
- ""**/*.tiff"":true,
- ""**/*.3ds"":true,
- ""**/*.3DS"":true,
- ""**/*.fbx"":true,
- ""**/*.FBX"":true,
- ""**/*.lxo"":true,
- ""**/*.LXO"":true,
- ""**/*.ma"":true,
- ""**/*.MA"":true,
- ""**/*.obj"":true,
- ""**/*.OBJ"":true,
- ""**/*.asset"":true,
- ""**/*.cubemap"":true,
- ""**/*.flare"":true,
- ""**/*.mat"":true,
- ""**/*.meta"":true,
- ""**/*.prefab"":true,
- ""**/*.unity"":true,
- ""build/"":true,
- ""Build/"":true,
- ""Library/"":true,
- ""library/"":true,
- ""obj/"":true,
- ""Obj/"":true,
- ""ProjectSettings/"":true,
- ""temp/"":true,
- ""Temp/"":true
- }
- }";
-
-
-
- static readonly Dictionary<string, ScriptingLanguage> k_BuiltinSupportedExtensions = new Dictionary<string, ScriptingLanguage>
- {
- { "cs", ScriptingLanguage.CSharp },
- { "uxml", ScriptingLanguage.None },
- { "uss", ScriptingLanguage.None },
- { "shader", ScriptingLanguage.None },
- { "compute", ScriptingLanguage.None },
- { "cginc", ScriptingLanguage.None },
- { "hlsl", ScriptingLanguage.None },
- { "glslinc", ScriptingLanguage.None }
- };
- string m_SolutionProjectEntryTemplate = string.Join("\r\n", @"Project(""{{{0}}}"") = ""{1}"", ""{2}"", ""{{{3}}}""", @"EndProject").Replace(" ", "\t");
- string m_SolutionProjectConfigurationTemplate = string.Join("\r\n", @" {{{0}}}.Debug|Any CPU.ActiveCfg = Debug|Any CPU", @" {{{0}}}.Debug|Any CPU.Build.0 = Debug|Any CPU", @" {{{0}}}.Release|Any CPU.ActiveCfg = Release|Any CPU", @" {{{0}}}.Release|Any CPU.Build.0 = Release|Any CPU").Replace(" ", "\t");
- static readonly string[] k_ReimportSyncExtensions = { ".dll", ".asmdef" };
-
-
-
-
- static readonly Regex k_ScriptReferenceExpression = new Regex(
- @"^Library.ScriptAssemblies.(?<dllname>(?<project>.*)\.dll$)",
- RegexOptions.Compiled | RegexOptions.IgnoreCase);
- string[] m_ProjectSupportedExtensions = new string[0];
- public string ProjectDirectory { get; }
- bool m_ShouldGenerateAll;
- public void GenerateAll(bool generateAll)
- {
- m_ShouldGenerateAll = generateAll;
- }
- public TestSettings Settings { get; set; }
- readonly string m_ProjectName;
- readonly IAssemblyNameProvider m_AssemblyNameProvider;
- const string k_ToolsVersion = "4.0";
- const string k_ProductVersion = "10.0.20506";
- const string k_BaseDirectory = ".";
- const string k_TargetFrameworkVersion = "v4.7.1";
- const string k_TargetLanguageVersion = "latest";
- public ProjectGeneration() : this(Directory.GetParent(Application.dataPath).FullName, new AssemblyNameProvider())
- {
- }
- public ProjectGeneration(string tempDirectory) : this(tempDirectory, new AssemblyNameProvider()) {
- }
- public ProjectGeneration(string tempDirectory, IAssemblyNameProvider assemblyNameProvider) {
- Settings = new TestSettings { ShouldSync = true };
- ProjectDirectory = tempDirectory.Replace('\\', '/');
- m_ProjectName = Path.GetFileName(ProjectDirectory);
- m_AssemblyNameProvider = assemblyNameProvider;
- }
-
-
-
-
-
-
-
-
-
-
-
-
- public bool SyncIfNeeded(IEnumerable<string> affectedFiles, IEnumerable<string> reimportedFiles)
- {
- Profiler.BeginSample("SolutionSynchronizerSync");
- SetupProjectSupportedExtensions();
-
- if (HasSolutionBeenGenerated() && HasFilesBeenModified(affectedFiles, reimportedFiles))
- {
- Sync();
- Profiler.EndSample();
- return true;
- }
- Profiler.EndSample();
- return false;
- }
- bool HasFilesBeenModified(IEnumerable<string> affectedFiles, IEnumerable<string> reimportedFiles)
- {
- return affectedFiles.Any(ShouldFileBePartOfSolution) || reimportedFiles.Any(ShouldSyncOnReimportedAsset);
- }
- static bool ShouldSyncOnReimportedAsset(string asset)
- {
- return k_ReimportSyncExtensions.Contains(new FileInfo(asset).Extension);
- }
- public void Sync()
- {
- SetupProjectSupportedExtensions();
- GenerateAndWriteSolutionAndProjects();
- }
- public bool HasSolutionBeenGenerated()
- {
- return File.Exists(SolutionFile());
- }
- void SetupProjectSupportedExtensions()
- {
- m_ProjectSupportedExtensions = EditorSettings.projectGenerationUserExtensions;
- }
- bool ShouldFileBePartOfSolution(string file)
- {
- string extension = Path.GetExtension(file);
-
- if (!m_ShouldGenerateAll && IsInternalizedPackagePath(file))
- {
- return false;
- }
-
- if (extension == ".dll")
- return true;
- if (file.ToLower().EndsWith(".asmdef"))
- return true;
- return IsSupportedExtension(extension);
- }
- bool IsSupportedExtension(string extension)
- {
- extension = extension.TrimStart('.');
- if (k_BuiltinSupportedExtensions.ContainsKey(extension))
- return true;
- if (m_ProjectSupportedExtensions.Contains(extension))
- return true;
- return false;
- }
- static ScriptingLanguage ScriptingLanguageFor(Assembly island)
- {
- return ScriptingLanguageFor(GetExtensionOfSourceFiles(island.sourceFiles));
- }
- static string GetExtensionOfSourceFiles(string[] files)
- {
- return files.Length > 0 ? GetExtensionOfSourceFile(files[0]) : "NA";
- }
- static string GetExtensionOfSourceFile(string file)
- {
- var ext = Path.GetExtension(file).ToLower();
- ext = ext.Substring(1);
- return ext;
- }
- static ScriptingLanguage ScriptingLanguageFor(string extension)
- {
- return k_BuiltinSupportedExtensions.TryGetValue(extension.TrimStart('.'), out var result)
- ? result
- : ScriptingLanguage.None;
- }
- public void GenerateAndWriteSolutionAndProjects()
- {
-
-
- var assemblies = m_AssemblyNameProvider.GetAllAssemblies(ShouldFileBePartOfSolution);
- var allAssetProjectParts = GenerateAllAssetProjectParts();
- var monoIslands = assemblies.ToList();
- SyncSolution(monoIslands);
- var allProjectIslands = RelevantIslandsForMode(monoIslands).ToList();
- foreach (Assembly assembly in allProjectIslands)
- {
- var responseFileData = ParseResponseFileData(assembly);
- SyncProject(assembly, allAssetProjectParts, responseFileData, allProjectIslands);
- }
- if (Settings.ShouldSync)
- {
- WriteVSCodeSettingsFiles();
- }
- }
- IEnumerable<ResponseFileData> ParseResponseFileData(Assembly assembly)
- {
- var systemReferenceDirectories = CompilationPipeline.GetSystemAssemblyDirectories(assembly.compilerOptions.ApiCompatibilityLevel);
- Dictionary<string, ResponseFileData> responseFilesData = assembly.compilerOptions.ResponseFiles.ToDictionary(x => x, x => CompilationPipeline.ParseResponseFile(
- Path.Combine(ProjectDirectory, x),
- ProjectDirectory,
- systemReferenceDirectories
- ));
- Dictionary<string, ResponseFileData> responseFilesWithErrors = responseFilesData.Where(x => x.Value.Errors.Any())
- .ToDictionary(x => x.Key, x => x.Value);
- if (responseFilesWithErrors.Any())
- {
- foreach (var error in responseFilesWithErrors)
- foreach (var valueError in error.Value.Errors)
- {
- Debug.LogError($"{error.Key} Parse Error : {valueError}");
- }
- }
- return responseFilesData.Select(x => x.Value);
- }
- Dictionary<string, string> GenerateAllAssetProjectParts()
- {
- Dictionary<string, StringBuilder> stringBuilders = new Dictionary<string, StringBuilder>();
- foreach (string asset in m_AssemblyNameProvider.GetAllAssetPaths())
- {
-
-
- if (!m_ShouldGenerateAll && IsInternalizedPackagePath(asset))
- {
- continue;
- }
- string extension = Path.GetExtension(asset);
- if (IsSupportedExtension(extension) && ScriptingLanguage.None == ScriptingLanguageFor(extension))
- {
-
- var assemblyName = m_AssemblyNameProvider.GetAssemblyNameFromScriptPath(asset + ".cs");
- if (string.IsNullOrEmpty(assemblyName))
- {
- continue;
- }
- assemblyName = Utility.FileNameWithoutExtension(assemblyName);
- if (!stringBuilders.TryGetValue(assemblyName, out var projectBuilder))
- {
- projectBuilder = new StringBuilder();
- stringBuilders[assemblyName] = projectBuilder;
- }
- projectBuilder.Append(" <None Include=\"").Append(EscapedRelativePathFor(asset)).Append("\" />").Append(k_WindowsNewline);
- }
- }
- var result = new Dictionary<string, string>();
- foreach (var entry in stringBuilders)
- result[entry.Key] = entry.Value.ToString();
- return result;
- }
- bool IsInternalizedPackagePath(string file)
- {
- if (string.IsNullOrWhiteSpace(file))
- {
- return false;
- }
- var packageInfo = m_AssemblyNameProvider.FindForAssetPath(file);
- if (packageInfo == null) {
- return false;
- }
- var packageSource = packageInfo.source;
- return packageSource != PackageSource.Embedded && packageSource != PackageSource.Local;
- }
- void SyncProject(
- Assembly island,
- Dictionary<string, string> allAssetsProjectParts,
- IEnumerable<ResponseFileData> responseFilesData,
- List<Assembly> allProjectIslands)
- {
- SyncProjectFileIfNotChanged(ProjectFile(island), ProjectText(island, allAssetsProjectParts, responseFilesData, allProjectIslands));
- }
- void SyncProjectFileIfNotChanged(string path, string newContents)
- {
- if (Path.GetExtension(path) == ".csproj")
- {
-
- }
- SyncFileIfNotChanged(path, newContents);
- }
- void SyncSolutionFileIfNotChanged(string path, string newContents)
- {
-
- SyncFileIfNotChanged(path, newContents);
- }
- void SyncFileIfNotChanged(string filename, string newContents)
- {
- if (File.Exists(filename) &&
- newContents == File.ReadAllText(filename))
- {
- return;
- }
- if (Settings.ShouldSync)
- {
- File.WriteAllText(filename, newContents, Encoding.UTF8);
- }
- else
- {
- var utf8 = Encoding.UTF8;
- byte[] utfBytes = utf8.GetBytes(newContents);
- Settings.SyncPath[filename] = utf8.GetString(utfBytes, 0, utfBytes.Length);
- }
- }
- string ProjectText(Assembly assembly,
- Dictionary<string, string> allAssetsProjectParts,
- IEnumerable<ResponseFileData> responseFilesData,
- List<Assembly> allProjectIslands)
- {
- var projectBuilder = new StringBuilder(ProjectHeader(assembly, responseFilesData));
- var references = new List<string>();
- var projectReferences = new List<Match>();
- foreach (string file in assembly.sourceFiles)
- {
- if (!ShouldFileBePartOfSolution(file))
- continue;
- var extension = Path.GetExtension(file).ToLower();
- var fullFile = EscapedRelativePathFor(file);
- if (".dll" != extension)
- {
- projectBuilder.Append(" <Compile Include=\"").Append(fullFile).Append("\" />").Append(k_WindowsNewline);
- }
- else
- {
- references.Add(fullFile);
- }
- }
- var assemblyName = Utility.FileNameWithoutExtension(assembly.outputPath);
-
- if (allAssetsProjectParts.TryGetValue(assemblyName, out var additionalAssetsForProject))
- projectBuilder.Append(additionalAssetsForProject);
- var islandRefs = references.Union(assembly.allReferences);
- foreach (string reference in islandRefs)
- {
- if (reference.EndsWith("/UnityEditor.dll", StringComparison.Ordinal)
- || reference.EndsWith("/UnityEngine.dll", StringComparison.Ordinal)
- || reference.EndsWith("\\UnityEditor.dll", StringComparison.Ordinal)
- || reference.EndsWith("\\UnityEngine.dll", StringComparison.Ordinal))
- continue;
- var match = k_ScriptReferenceExpression.Match(reference);
- if (match.Success)
- {
-
-
-
-
- var dllName = match.Groups["dllname"].Value;
- if (allProjectIslands.Any(i => Path.GetFileName(i.outputPath) == dllName))
- {
- projectReferences.Add(match);
- continue;
- }
- }
- string fullReference = Path.IsPathRooted(reference) ? reference : Path.Combine(ProjectDirectory, reference);
- AppendReference(fullReference, projectBuilder);
- }
- var responseRefs = responseFilesData.SelectMany(x => x.FullPathReferences.Select(r => r));
- foreach (var reference in responseRefs)
- {
- AppendReference(reference, projectBuilder);
- }
- if (0 < projectReferences.Count)
- {
- projectBuilder.AppendLine(" </ItemGroup>");
- projectBuilder.AppendLine(" <ItemGroup>");
- foreach (Match reference in projectReferences)
- {
- var referencedProject = reference.Groups["project"].Value;
- projectBuilder.Append(" <ProjectReference Include=\"").Append(referencedProject).Append(GetProjectExtension()).Append("\">").Append(k_WindowsNewline);
- projectBuilder.Append(" <Project>{").Append(ProjectGuid(Path.Combine("Temp", reference.Groups["project"].Value + ".dll"))).Append("}</Project>").Append(k_WindowsNewline);
- projectBuilder.Append(" <Name>").Append(referencedProject).Append("</Name>").Append(k_WindowsNewline);
- projectBuilder.AppendLine(" </ProjectReference>");
- }
- }
- projectBuilder.Append(ProjectFooter());
- return projectBuilder.ToString();
- }
- static void AppendReference(string fullReference, StringBuilder projectBuilder)
- {
-
- var escapedFullPath = SecurityElement.Escape(fullReference);
- escapedFullPath = escapedFullPath.Replace("\\", "/");
- escapedFullPath = escapedFullPath.Replace("\\\\", "/");
- projectBuilder.Append(" <Reference Include=\"").Append(Utility.FileNameWithoutExtension(escapedFullPath)).Append("\">").Append(k_WindowsNewline);
- projectBuilder.Append(" <HintPath>").Append(escapedFullPath).Append("</HintPath>").Append(k_WindowsNewline);
- projectBuilder.Append(" </Reference>").Append(k_WindowsNewline);
- }
- public string ProjectFile(Assembly assembly)
- {
- return Path.Combine(ProjectDirectory, $"{Utility.FileNameWithoutExtension(assembly.outputPath)}.csproj");
- }
- public string SolutionFile()
- {
- return Path.Combine(ProjectDirectory, $"{m_ProjectName}.sln");
- }
- string ProjectHeader(
- Assembly island,
- IEnumerable<ResponseFileData> responseFilesData
- )
- {
- var arguments = new object[]
- {
- k_ToolsVersion, k_ProductVersion, ProjectGuid(island.outputPath),
- InternalEditorUtility.GetEngineAssemblyPath(),
- InternalEditorUtility.GetEditorAssemblyPath(),
- string.Join(";", new[] { "DEBUG", "TRACE" }.Concat(EditorUserBuildSettings.activeScriptCompilationDefines).Concat(island.defines).Concat(responseFilesData.SelectMany(x => x.Defines)).Distinct().ToArray()),
- MSBuildNamespaceUri,
- Utility.FileNameWithoutExtension(island.outputPath),
- EditorSettings.projectGenerationRootNamespace,
- k_TargetFrameworkVersion,
- k_TargetLanguageVersion,
- k_BaseDirectory,
- island.compilerOptions.AllowUnsafeCode | responseFilesData.Any(x => x.Unsafe)
- };
- try
- {
- return string.Format(GetProjectHeaderTemplate(), arguments);
- }
- catch (Exception)
- {
- throw new NotSupportedException("Failed creating c# project because the c# project header did not have the correct amount of arguments, which is " + arguments.Length);
- }
- }
- static string GetSolutionText()
- {
- return string.Join("\r\n", @"", @"Microsoft Visual Studio Solution File, Format Version {0}", @"# Visual Studio {1}", @"{2}", @"Global", @" GlobalSection(SolutionConfigurationPlatforms) = preSolution", @" Debug|Any CPU = Debug|Any CPU", @" Release|Any CPU = Release|Any CPU", @" EndGlobalSection", @" GlobalSection(ProjectConfigurationPlatforms) = postSolution", @"{3}", @" EndGlobalSection", @" GlobalSection(SolutionProperties) = preSolution", @" HideSolutionNode = FALSE", @" EndGlobalSection", @"EndGlobal", @"").Replace(" ", "\t");
- }
- static string GetProjectFooterTemplate()
- {
- return string.Join("\r\n", @" </ItemGroup>", @" <Import Project=""$(MSBuildToolsPath)\Microsoft.CSharp.targets"" />", @" <!-- To modify your build process, add your task inside one of the targets below and uncomment it. ", @" Other similar extension points exist, see Microsoft.Common.targets.", @" <Target Name=""BeforeBuild"">", @" </Target>", @" <Target Name=""AfterBuild"">", @" </Target>", @" -->", @"</Project>", @"");
- }
- static string GetProjectHeaderTemplate()
- {
- var header = new[]
- {
- @"<?xml version=""1.0"" encoding=""utf-8""?>",
- @"<Project ToolsVersion=""{0}"" DefaultTargets=""Build"" xmlns=""{6}"">",
- @" <PropertyGroup>",
- @" <LangVersion>{10}</LangVersion>",
- @" </PropertyGroup>",
- @" <PropertyGroup>",
- @" <Configuration Condition="" '$(Configuration)' == '' "">Debug</Configuration>",
- @" <Platform Condition="" '$(Platform)' == '' "">AnyCPU</Platform>",
- @" <ProductVersion>{1}</ProductVersion>",
- @" <SchemaVersion>2.0</SchemaVersion>",
- @" <RootNamespace>{8}</RootNamespace>",
- @" <ProjectGuid>{{{2}}}</ProjectGuid>",
- @" <OutputType>Library</OutputType>",
- @" <AppDesignerFolder>Properties</AppDesignerFolder>",
- @" <AssemblyName>{7}</AssemblyName>",
- @" <TargetFrameworkVersion>{9}</TargetFrameworkVersion>",
- @" <FileAlignment>512</FileAlignment>",
- @" <BaseDirectory>{11}</BaseDirectory>",
- @" </PropertyGroup>",
- @" <PropertyGroup Condition="" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "">",
- @" <DebugSymbols>true</DebugSymbols>",
- @" <DebugType>full</DebugType>",
- @" <Optimize>false</Optimize>",
- @" <OutputPath>Temp\bin\Debug\</OutputPath>",
- @" <DefineConstants>{5}</DefineConstants>",
- @" <ErrorReport>prompt</ErrorReport>",
- @" <WarningLevel>4</WarningLevel>",
- @" <NoWarn>0169</NoWarn>",
- @" <AllowUnsafeBlocks>{12}</AllowUnsafeBlocks>",
- @" </PropertyGroup>",
- @" <PropertyGroup Condition="" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "">",
- @" <DebugType>pdbonly</DebugType>",
- @" <Optimize>true</Optimize>",
- @" <OutputPath>Temp\bin\Release\</OutputPath>",
- @" <ErrorReport>prompt</ErrorReport>",
- @" <WarningLevel>4</WarningLevel>",
- @" <NoWarn>0169</NoWarn>",
- @" <AllowUnsafeBlocks>{12}</AllowUnsafeBlocks>",
- @" </PropertyGroup>"
- };
- var forceExplicitReferences = new[]
- {
- @" <PropertyGroup>",
- @" <NoConfig>true</NoConfig>",
- @" <NoStdLib>true</NoStdLib>",
- @" <AddAdditionalExplicitAssemblyReferences>false</AddAdditionalExplicitAssemblyReferences>",
- @" <ImplicitlyExpandNETStandardFacades>false</ImplicitlyExpandNETStandardFacades>",
- @" <ImplicitlyExpandDesignTimeFacades>false</ImplicitlyExpandDesignTimeFacades>",
- @" </PropertyGroup>"
- };
- var itemGroupStart = new[]
- {
- @" <ItemGroup>"
- };
- var footer = new[]
- {
- @" <Reference Include=""UnityEngine"">",
- @" <HintPath>{3}</HintPath>",
- @" </Reference>",
- @" <Reference Include=""UnityEditor"">",
- @" <HintPath>{4}</HintPath>",
- @" </Reference>",
- @" </ItemGroup>",
- @" <ItemGroup>",
- @""
- };
- var text = header.Concat(forceExplicitReferences).Concat(itemGroupStart).Concat(footer).ToArray();
- return string.Join("\r\n", text);
- }
- void SyncSolution(IEnumerable<Assembly> islands)
- {
- SyncSolutionFileIfNotChanged(SolutionFile(), SolutionText(islands));
- }
- string SolutionText(IEnumerable<Assembly> islands)
- {
- var fileversion = "11.00";
- var vsversion = "2010";
- var relevantIslands = RelevantIslandsForMode(islands);
- string projectEntries = GetProjectEntries(relevantIslands);
- string projectConfigurations = string.Join(k_WindowsNewline, relevantIslands.Select(i => GetProjectActiveConfigurations(ProjectGuid(i.outputPath))).ToArray());
- return string.Format(GetSolutionText(), fileversion, vsversion, projectEntries, projectConfigurations);
- }
- static IEnumerable<Assembly> RelevantIslandsForMode(IEnumerable<Assembly> islands)
- {
- IEnumerable<Assembly> relevantIslands = islands.Where(i => ScriptingLanguage.CSharp == ScriptingLanguageFor(i));
- return relevantIslands;
- }
-
-
-
-
- string GetProjectEntries(IEnumerable<Assembly> islands)
- {
- var projectEntries = islands.Select(i => string.Format(
- m_SolutionProjectEntryTemplate,
- SolutionGuid(i), Utility.FileNameWithoutExtension(i.outputPath), Path.GetFileName(ProjectFile(i)), ProjectGuid(i.outputPath)
- ));
- return string.Join(k_WindowsNewline, projectEntries.ToArray());
- }
-
-
-
- string GetProjectActiveConfigurations(string projectGuid)
- {
- return string.Format(
- m_SolutionProjectConfigurationTemplate,
- projectGuid);
- }
- string EscapedRelativePathFor(string file)
- {
- var projectDir = ProjectDirectory.Replace('/', '\\');
- file = file.Replace('/', '\\');
- var path = SkipPathPrefix(file, projectDir);
- var packageInfo = m_AssemblyNameProvider.FindForAssetPath(path.Replace('\\', '/'));
- if (packageInfo != null) {
-
-
- var absolutePath = Path.GetFullPath(NormalizePath(path)).Replace('/', '\\');
- path = SkipPathPrefix(absolutePath, projectDir);
- }
- return SecurityElement.Escape(path);
- }
- static string SkipPathPrefix(string path, string prefix)
- {
- if (path.Replace("\\","/").StartsWith($"{prefix}/"))
- return path.Substring(prefix.Length + 1);
- return path;
- }
- static string NormalizePath(string path)
- {
- if (Path.DirectorySeparatorChar == '\\')
- return path.Replace('/', Path.DirectorySeparatorChar);
- return path.Replace('\\', Path.DirectorySeparatorChar);
- }
- string ProjectGuid(string assembly)
- {
- return SolutionGuidGenerator.GuidForProject(m_ProjectName + Utility.FileNameWithoutExtension(assembly));
- }
- string SolutionGuid(Assembly island)
- {
- return SolutionGuidGenerator.GuidForSolution(m_ProjectName, GetExtensionOfSourceFiles(island.sourceFiles));
- }
- static string ProjectFooter()
- {
- return GetProjectFooterTemplate();
- }
- static string GetProjectExtension()
- {
- return ".csproj";
- }
- void WriteVSCodeSettingsFiles()
- {
- var vsCodeDirectory = Path.Combine(ProjectDirectory, ".vscode");
- if (!Directory.Exists(vsCodeDirectory))
- Directory.CreateDirectory(vsCodeDirectory);
- var vsCodeSettingsJson = Path.Combine(vsCodeDirectory, "settings.json");
- if (!File.Exists(vsCodeSettingsJson))
- File.WriteAllText(vsCodeSettingsJson, k_SettingsJson);
- }
- }
- public static class SolutionGuidGenerator
- {
- public static string GuidForProject(string projectName)
- {
- return ComputeGuidHashFor(projectName + "salt");
- }
- public static string GuidForSolution(string projectName, string sourceFileExtension)
- {
- if (sourceFileExtension.ToLower() == "cs")
-
- return "FAE04EC0-301F-11D3-BF4B-00C04F79EFBC";
- return ComputeGuidHashFor(projectName);
- }
- static string ComputeGuidHashFor(string input)
- {
- var hash = MD5.Create().ComputeHash(Encoding.Default.GetBytes(input));
- return HashAsGuid(HashToString(hash));
- }
- static string HashAsGuid(string hash)
- {
- var guid = hash.Substring(0, 8) + "-" + hash.Substring(8, 4) + "-" + hash.Substring(12, 4) + "-" + hash.Substring(16, 4) + "-" + hash.Substring(20, 12);
- return guid.ToUpper();
- }
- static string HashToString(byte[] bs)
- {
- var sb = new StringBuilder();
- foreach (byte b in bs)
- sb.Append(b.ToString("x2"));
- return sb.ToString();
- }
- }
- }
|