diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json deleted file mode 100644 index 7d5d57a..0000000 --- a/.config/dotnet-tools.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "version": 1, - "isRoot": true, - "tools": { - "nuke.globaltool": { - "version": "5.1.0", - "commands": [ - "nuke" - ] - } - } -} \ No newline at end of file diff --git a/.nuke/build.schema.json b/.nuke/build.schema.json index 199f5e1..cb5c719 100644 --- a/.nuke/build.schema.json +++ b/.nuke/build.schema.json @@ -83,6 +83,7 @@ "Restore", "RunCi", "RunFormat", + "Test", "UnInstallCli" ] } @@ -108,6 +109,7 @@ "Restore", "RunCi", "RunFormat", + "Test", "UnInstallCli" ] } diff --git a/.vscode/launch.json b/.vscode/launch.json index 768f6b8..fb200fa 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,9 +10,9 @@ "request": "launch", "preLaunchTask": "build", // If you have changed target frameworks, make sure to update the program path. - "program": "${workspaceFolder}/CsprojToAsmdef.Cli/bin/Debug/net5.0/CsprojToAsmdef.Cli.dll", + "program": "${workspaceFolder}/Sources/CsprojToAsmdef.Cli/bin/Debug/net5.0/CsprojToAsmdef.Cli.dll", "args": [], - "cwd": "${workspaceFolder}/CsprojToAsmdef.Cli", + "cwd": "${workspaceFolder}/Sources/CsprojToAsmdef.Cli", // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console "console": "internalConsole", "stopAtEntry": false diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 68719bf..89eb643 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -7,7 +7,7 @@ "type": "process", "args": [ "build", - "${workspaceFolder}/CsprojToAsmdef.Cli/CsprojToAsmdef.Cli.csproj", + "${workspaceFolder}/Sources/CsprojToAsmdef.Cli/CsprojToAsmdef.Cli.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], @@ -19,7 +19,7 @@ "type": "process", "args": [ "publish", - "${workspaceFolder}/CsprojToAsmdef.Cli/CsprojToAsmdef.Cli.csproj", + "${workspaceFolder}/Sources/CsprojToAsmdef.Cli/CsprojToAsmdef.Cli.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], @@ -32,7 +32,7 @@ "args": [ "watch", "run", - "${workspaceFolder}/CsprojToAsmdef.Cli/CsprojToAsmdef.Cli.csproj", + "${workspaceFolder}/Sources/CsprojToAsmdef.Cli/CsprojToAsmdef.Cli.csproj", "/property:GenerateFullPaths=true", "/consoleloggerparameters:NoSummary" ], diff --git a/Build/.editorconfig b/Build/.editorconfig new file mode 100644 index 0000000..03ba834 --- /dev/null +++ b/Build/.editorconfig @@ -0,0 +1,19 @@ +root = true + +[*.cs] +dotnet_style_qualification_for_field = false:warning +dotnet_style_qualification_for_property = false:warning +dotnet_style_qualification_for_method = false:warning +dotnet_style_qualification_for_event = false:warning +dotnet_style_require_accessibility_modifiers = never:warning + +csharp_style_expression_bodied_methods = true:silent +csharp_style_expression_bodied_properties = true:warning +csharp_style_expression_bodied_indexers = true:warning +csharp_style_expression_bodied_accessors = true:warning + +# CA1050: Declare types in namespaces +dotnet_diagnostic.CA1050.severity = none + +# IDE0051: Remove unused private members +dotnet_diagnostic.IDE0051.severity = none diff --git a/CsprojToAsmdef.Build/Build.cs b/Build/Build.cs similarity index 87% rename from CsprojToAsmdef.Build/Build.cs rename to Build/Build.cs index e1f11e7..d6fca29 100644 --- a/CsprojToAsmdef.Build/Build.cs +++ b/Build/Build.cs @@ -54,6 +54,15 @@ partial class Build : NukeBuild .EnableNoIncremental() .EnableNoRestore())); + Target Test => _ => _ + .DependsOn(BuildCli) + .Executes(() => + DotNetTest(s => s + .SetProjectFile(Solution) + .SetConfiguration(Configuration) + .EnableNoBuild() + .EnableNoRestore())); + public static int Main() => Execute(x => x.BuildAll); protected override void OnBuildInitialized() @@ -83,12 +92,12 @@ string GetCurrentVersion() var jsonContent = File.ReadAllText(packagePath); var package = JsonSerializer.Deserialize(jsonContent, new JsonSerializerOptions { PropertyNameCaseInsensitive = true }); - if (package?.Version is null) throw new InvalidOperationException($"Cloud not deserialize package.json:\n{jsonContent}"); + if (package?.Version is null) throw new InvalidOperationException($"Cloud not deserialize package.json:{Environment.NewLine}{jsonContent}"); return package.Version; } - PackageDirectory = Path.Combine(Solution.Directory, "CsprojToAsmdef", "Assets", "CsprojToAsmdef"); + PackageDirectory = Solution.AllProjects.Single(p => p.Name == "CsprojToAsmdef").Directory; CurrentVersion = GetCurrentVersion(); IsNewestVersion = GetIsNewestVersion(); CliProject = Solution.AllProjects.Single(p => p.Name == "CsprojToAsmdef.Cli"); diff --git a/CsprojToAsmdef.Build/Ci.cs b/Build/Ci.cs similarity index 88% rename from CsprojToAsmdef.Build/Ci.cs rename to Build/Ci.cs index 1187677..3a49d46 100644 --- a/CsprojToAsmdef.Build/Ci.cs +++ b/Build/Ci.cs @@ -5,6 +5,7 @@ partial class Build Target RunCi => _ => _ .DependsOn(CheckFormatting) .DependsOn(InstallCli) + .DependsOn(Test) .Executes(() => { }); diff --git a/CsprojToAsmdef.Build/Configuration.cs b/Build/Configuration.cs similarity index 100% rename from CsprojToAsmdef.Build/Configuration.cs rename to Build/Configuration.cs diff --git a/CsprojToAsmdef.Build/CsprojToAsmdef.Build.csproj b/Build/CsprojToAsmdef.Build.csproj similarity index 82% rename from CsprojToAsmdef.Build/CsprojToAsmdef.Build.csproj rename to Build/CsprojToAsmdef.Build.csproj index 776e830..95802d2 100644 --- a/CsprojToAsmdef.Build/CsprojToAsmdef.Build.csproj +++ b/Build/CsprojToAsmdef.Build.csproj @@ -1,11 +1,12 @@ - + Exe net5.0 + 9.0 enable - CS0649;CS0169;SA1633;SA1200 + CS0649;CS0169 .. .. diff --git a/CsprojToAsmdef.Build/CsprojToAsmdef.Build.csproj.DotSettings b/Build/CsprojToAsmdef.Build.csproj.DotSettings similarity index 100% rename from CsprojToAsmdef.Build/CsprojToAsmdef.Build.csproj.DotSettings rename to Build/CsprojToAsmdef.Build.csproj.DotSettings diff --git a/CsprojToAsmdef.Build/DotNetBuildSettingsExtensions.cs b/Build/DotNetBuildSettingsExtensions.cs similarity index 100% rename from CsprojToAsmdef.Build/DotNetBuildSettingsExtensions.cs rename to Build/DotNetBuildSettingsExtensions.cs diff --git a/CsprojToAsmdef.Build/Formatting.cs b/Build/Formatting.cs similarity index 100% rename from CsprojToAsmdef.Build/Formatting.cs rename to Build/Formatting.cs diff --git a/CsprojToAsmdef.Build/Local.cs b/Build/Local.cs similarity index 100% rename from CsprojToAsmdef.Build/Local.cs rename to Build/Local.cs diff --git a/CsprojToAsmdef.Build/NuGet.cs b/Build/NuGet.cs similarity index 93% rename from CsprojToAsmdef.Build/NuGet.cs rename to Build/NuGet.cs index 579f18e..80504a2 100644 --- a/CsprojToAsmdef.Build/NuGet.cs +++ b/Build/NuGet.cs @@ -3,7 +3,6 @@ using Nuke.Common.Tools.DotNet; using Nuke.Common.Utilities.Collections; using System.Collections.Generic; -using System.Diagnostics.CodeAnalysis; using System.IO; using System.Linq; using System.Text; @@ -13,7 +12,6 @@ partial class Build { - [SuppressMessage("Minor Code Smell", "S1075:URIs should not be hardcoded", Justification = "Will only ever publish on Nuget.org")] const string NugetApiUrl = "https://api.nuget.org/v3/index.json"; [Parameter("NuGet API key to use for authentication with the NuGet server")] diff --git a/CsprojToAsmdef.Build/PackageJson.cs b/Build/PackageJson.cs similarity index 100% rename from CsprojToAsmdef.Build/PackageJson.cs rename to Build/PackageJson.cs diff --git a/CsprojToAsmdef.Build/.editorconfig b/CsprojToAsmdef.Build/.editorconfig deleted file mode 100644 index 705d8d3..0000000 --- a/CsprojToAsmdef.Build/.editorconfig +++ /dev/null @@ -1,73 +0,0 @@ -root = true - -[*.cs] -dotnet_style_qualification_for_field = false:warning -dotnet_style_qualification_for_property = false:warning -dotnet_style_qualification_for_method = false:warning -dotnet_style_qualification_for_event = false:warning -dotnet_style_require_accessibility_modifiers = never:warning - -csharp_style_expression_bodied_methods = true:silent -csharp_style_expression_bodied_properties = true:warning -csharp_style_expression_bodied_indexers = true:warning -csharp_style_expression_bodied_accessors = true:warning - -# CA1050: Declare types in namespaces -dotnet_diagnostic.CA1050.severity = none - -# IDE0051: Remove unused private members -dotnet_diagnostic.IDE0051.severity = none - -# SA1208: System using directives should be placed before other using directives -dotnet_diagnostic.SA1208.severity = none - -# SA1205: Partial elements should declare access -dotnet_diagnostic.SA1205.severity = none - -# SA1601: Partial elements should be documented -dotnet_diagnostic.SA1601.severity = none - -# SA1400: Access modifier should be declared -dotnet_diagnostic.SA1400.severity = none - -# SA1101: Prefix local calls with this -dotnet_diagnostic.SA1101.severity = none - -# SA1633: File should have header -dotnet_diagnostic.SA1633.severity = none - -# SA1217: Using static directives should be ordered alphabetically -dotnet_diagnostic.SA1217.severity = none - -# SA1306: Field names should begin with lower-case letter -dotnet_diagnostic.SA1306.severity = none - -# SA1600: Elements should be documented -dotnet_diagnostic.SA1600.severity = none - -# SA1000: Keywords should be spaced correctly -dotnet_diagnostic.SA1000.severity = none - -# SA1134: Attributes should not share line -dotnet_diagnostic.SA1134.severity = none - -# SA1503: Braces should not be omitted -dotnet_diagnostic.SA1503.severity = none - -# CS1591: Missing XML comment for publicly visible type or member -dotnet_diagnostic.CS1591.severity = none - -# IDE0005: Using directive is unnecessary. -dotnet_diagnostic.IDE0005.severity = warning - -# RCS1110: Declare type inside namespace. -dotnet_diagnostic.RCS1110.severity = none - -# RCS1018: Add accessibility modifiers (or vice versa). -dotnet_diagnostic.RCS1018.severity = none - -# S1144: Unused private types or members should be removed -dotnet_diagnostic.S1144.severity = none - -# S3903: Types should be defined in named namespaces -dotnet_diagnostic.S3903.severity = none diff --git a/CsprojToAsmdef.sln b/CsprojToAsmdef.sln index 1cd147b..ab4b949 100644 --- a/CsprojToAsmdef.sln +++ b/CsprojToAsmdef.sln @@ -3,151 +3,109 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.31005.135 MinimumVisualStudioVersion = 15.0.26124.0 -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CsprojToAsmdef", "CsprojToAsmdef", "{248E705F-5800-4868-A1F8-A4C7E3910DDA}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CsprojToAsmdef.Cli", "Sources\CsprojToAsmdef.Cli\CsprojToAsmdef.Cli.csproj", "{DCAE6F07-DF90-4318-8469-222337ED2BEB}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Assets", "Assets", "{ECD91EAB-0067-4812-86AB-8B179157C0CB}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Sources", "Sources", "{A6826CB8-3E89-45F5-9DCC-AC6A83C86190}" ProjectSection(SolutionItems) = preProject - CsprojToAsmdef\Assets\Directory.Build.props = CsprojToAsmdef\Assets\Directory.Build.props - CsprojToAsmdef\Assets\Directory.Build.targets = CsprojToAsmdef\Assets\Directory.Build.targets + Sources\Directory.Build.props = Sources\Directory.Build.props EndProjectSection EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Sample", "CsprojToAsmdef\Assets\Sample\Sample.csproj", "{714AE85F-46E4-40F1-B707-A6723724938B}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Unity", "Unity", "{106EBF7E-46DC-4E52-AECC-F1A09DEB4D74}" + ProjectSection(SolutionItems) = preProject + Sources\CsprojToAsmdef\Assets\Directory.Build.props = Sources\CsprojToAsmdef\Assets\Directory.Build.props + Sources\CsprojToAsmdef\Assets\Directory.Build.targets = Sources\CsprojToAsmdef\Assets\Directory.Build.targets + EndProjectSection EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CsprojToAsmdef", "CsprojToAsmdef\Assets\CsprojToAsmdef\CsprojToAsmdef.csproj", "{068C687F-8A6C-4675-966A-876B0F3DEA38}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CsprojToAsmdef", "Sources\CsprojToAsmdef\Assets\CsprojToAsmdef\CsprojToAsmdef.csproj", "{0E2C923C-5BFD-48E8-96D4-82F834F71540}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CsprojToAsmdef.Cli", "CsprojToAsmdef.Cli\CsprojToAsmdef.Cli.csproj", "{D5211E10-5965-4499-AE64-EE71CE5AADA6}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{EA978B94-4450-47E9-AE1B-A3703E27DFE6}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CsprojToAsmdef.Build", "CsprojToAsmdef.Build\CsprojToAsmdef.Build.csproj", "{C501AE1A-CC32-4F10-B9B1-F13ECD55A4DF}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Sample", "Samples\CsprojToAsmdef.Sample\Assets\Sample\Sample.csproj", "{7B5EF20D-FB7B-4847-B650-C2622024D22C}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{D3F0817B-B868-47EC-A02E-141EDDD5ED71}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Unity", "Unity", "{F054F1EB-4793-4A8B-AA71-8C028DC807A4}" ProjectSection(SolutionItems) = preProject - .editorconfig = .editorconfig - Directory.Build.props = Directory.Build.props - global.json = global.json + Samples\CsprojToAsmdef.Sample\Assets\Directory.Build.props = Samples\CsprojToAsmdef.Sample\Assets\Directory.Build.props + Samples\CsprojToAsmdef.Sample\Assets\Directory.Build.targets = Samples\CsprojToAsmdef.Sample\Assets\Directory.Build.targets EndProjectSection EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleUnityDependency", "CsprojToAsmdef\Assets\SampleUnityDependency\SampleUnityDependency.csproj", "{A6C5CCB1-CAFF-4E44-9873-AF8C57593191}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SampleUnityDependency", "Samples\CsprojToAsmdef.Sample\Assets\SampleUnityDependency\SampleUnityDependency.csproj", "{203B424D-0C02-41CB-B900-A1A98F4ACDE5}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SomeOtherDependency", "Samples\CsprojToAsmdef.Sample\Assets\SomeOtherDependency\SomeOtherDependency.csproj", "{F4E801B6-8DD3-4813-920A-D8C6587BA31D}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExternalDependency", "Samples\ExternalDependency\ExternalDependency.csproj", "{12954591-D7DA-4174-B4B8-4F583B8C54F1}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "OtherExternalDependency", "Samples\OtherExternalDependency\OtherExternalDependency.csproj", "{F9112163-007B-470E-88F0-B2887F2AF7A4}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SomeOtherDependency", "CsprojToAsmdef\Assets\SomeOtherDependency\SomeOtherDependency.csproj", "{A765D70C-CB5A-43A2-9C08-996F83DE22E9}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CsprojToAsmdef.Tests", "Tests\CsprojToAsmdef.Tests\CsprojToAsmdef.Tests.csproj", "{1588E1F4-C90F-45C2-8CFA-B06674D9AF42}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tests", "Tests", "{BE273337-41AE-4ED6-B46A-E1126EF899CD}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B3AA17B9-C8B2-4194-8099-A5E29FD702E0}" + ProjectSection(SolutionItems) = preProject + .editorconfig = .editorconfig + global.json = global.json + EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExternalDependency", "ExternalDependency\ExternalDependency.csproj", "{C3450D26-D68E-4A1B-8954-1AFD8C228C43}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CsprojToAsmdef.Build", "Build\CsprojToAsmdef.Build.csproj", "{D7EB84A9-78A1-418A-B7A3-E2E8F4CF9766}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OtherExternalDependency", "OtherExternalDependency\OtherExternalDependency.csproj", "{C4FA42B8-D90D-420C-9353-0CA72375C7D2}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{71000320-72B9-4B32-B4C8-5CD2C0B3AB46}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU - Release|x64 = Release|x64 - Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {714AE85F-46E4-40F1-B707-A6723724938B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {714AE85F-46E4-40F1-B707-A6723724938B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {714AE85F-46E4-40F1-B707-A6723724938B}.Debug|x64.ActiveCfg = Debug|Any CPU - {714AE85F-46E4-40F1-B707-A6723724938B}.Debug|x64.Build.0 = Debug|Any CPU - {714AE85F-46E4-40F1-B707-A6723724938B}.Debug|x86.ActiveCfg = Debug|Any CPU - {714AE85F-46E4-40F1-B707-A6723724938B}.Debug|x86.Build.0 = Debug|Any CPU - {714AE85F-46E4-40F1-B707-A6723724938B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {714AE85F-46E4-40F1-B707-A6723724938B}.Release|Any CPU.Build.0 = Release|Any CPU - {714AE85F-46E4-40F1-B707-A6723724938B}.Release|x64.ActiveCfg = Release|Any CPU - {714AE85F-46E4-40F1-B707-A6723724938B}.Release|x64.Build.0 = Release|Any CPU - {714AE85F-46E4-40F1-B707-A6723724938B}.Release|x86.ActiveCfg = Release|Any CPU - {714AE85F-46E4-40F1-B707-A6723724938B}.Release|x86.Build.0 = Release|Any CPU - {068C687F-8A6C-4675-966A-876B0F3DEA38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {068C687F-8A6C-4675-966A-876B0F3DEA38}.Debug|Any CPU.Build.0 = Debug|Any CPU - {068C687F-8A6C-4675-966A-876B0F3DEA38}.Debug|x64.ActiveCfg = Debug|Any CPU - {068C687F-8A6C-4675-966A-876B0F3DEA38}.Debug|x64.Build.0 = Debug|Any CPU - {068C687F-8A6C-4675-966A-876B0F3DEA38}.Debug|x86.ActiveCfg = Debug|Any CPU - {068C687F-8A6C-4675-966A-876B0F3DEA38}.Debug|x86.Build.0 = Debug|Any CPU - {068C687F-8A6C-4675-966A-876B0F3DEA38}.Release|Any CPU.ActiveCfg = Release|Any CPU - {068C687F-8A6C-4675-966A-876B0F3DEA38}.Release|Any CPU.Build.0 = Release|Any CPU - {068C687F-8A6C-4675-966A-876B0F3DEA38}.Release|x64.ActiveCfg = Release|Any CPU - {068C687F-8A6C-4675-966A-876B0F3DEA38}.Release|x64.Build.0 = Release|Any CPU - {068C687F-8A6C-4675-966A-876B0F3DEA38}.Release|x86.ActiveCfg = Release|Any CPU - {068C687F-8A6C-4675-966A-876B0F3DEA38}.Release|x86.Build.0 = Release|Any CPU - {D5211E10-5965-4499-AE64-EE71CE5AADA6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D5211E10-5965-4499-AE64-EE71CE5AADA6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D5211E10-5965-4499-AE64-EE71CE5AADA6}.Debug|x64.ActiveCfg = Debug|Any CPU - {D5211E10-5965-4499-AE64-EE71CE5AADA6}.Debug|x64.Build.0 = Debug|Any CPU - {D5211E10-5965-4499-AE64-EE71CE5AADA6}.Debug|x86.ActiveCfg = Debug|Any CPU - {D5211E10-5965-4499-AE64-EE71CE5AADA6}.Debug|x86.Build.0 = Debug|Any CPU - {D5211E10-5965-4499-AE64-EE71CE5AADA6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D5211E10-5965-4499-AE64-EE71CE5AADA6}.Release|Any CPU.Build.0 = Release|Any CPU - {D5211E10-5965-4499-AE64-EE71CE5AADA6}.Release|x64.ActiveCfg = Release|Any CPU - {D5211E10-5965-4499-AE64-EE71CE5AADA6}.Release|x64.Build.0 = Release|Any CPU - {D5211E10-5965-4499-AE64-EE71CE5AADA6}.Release|x86.ActiveCfg = Release|Any CPU - {D5211E10-5965-4499-AE64-EE71CE5AADA6}.Release|x86.Build.0 = Release|Any CPU - {C501AE1A-CC32-4F10-B9B1-F13ECD55A4DF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C501AE1A-CC32-4F10-B9B1-F13ECD55A4DF}.Debug|x64.ActiveCfg = Debug|Any CPU - {C501AE1A-CC32-4F10-B9B1-F13ECD55A4DF}.Debug|x64.Build.0 = Debug|Any CPU - {C501AE1A-CC32-4F10-B9B1-F13ECD55A4DF}.Debug|x86.ActiveCfg = Debug|Any CPU - {C501AE1A-CC32-4F10-B9B1-F13ECD55A4DF}.Debug|x86.Build.0 = Debug|Any CPU - {C501AE1A-CC32-4F10-B9B1-F13ECD55A4DF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C501AE1A-CC32-4F10-B9B1-F13ECD55A4DF}.Release|x64.ActiveCfg = Release|Any CPU - {C501AE1A-CC32-4F10-B9B1-F13ECD55A4DF}.Release|x64.Build.0 = Release|Any CPU - {C501AE1A-CC32-4F10-B9B1-F13ECD55A4DF}.Release|x86.ActiveCfg = Release|Any CPU - {C501AE1A-CC32-4F10-B9B1-F13ECD55A4DF}.Release|x86.Build.0 = Release|Any CPU - {A6C5CCB1-CAFF-4E44-9873-AF8C57593191}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A6C5CCB1-CAFF-4E44-9873-AF8C57593191}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A6C5CCB1-CAFF-4E44-9873-AF8C57593191}.Debug|x64.ActiveCfg = Debug|Any CPU - {A6C5CCB1-CAFF-4E44-9873-AF8C57593191}.Debug|x64.Build.0 = Debug|Any CPU - {A6C5CCB1-CAFF-4E44-9873-AF8C57593191}.Debug|x86.ActiveCfg = Debug|Any CPU - {A6C5CCB1-CAFF-4E44-9873-AF8C57593191}.Debug|x86.Build.0 = Debug|Any CPU - {A6C5CCB1-CAFF-4E44-9873-AF8C57593191}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A6C5CCB1-CAFF-4E44-9873-AF8C57593191}.Release|Any CPU.Build.0 = Release|Any CPU - {A6C5CCB1-CAFF-4E44-9873-AF8C57593191}.Release|x64.ActiveCfg = Release|Any CPU - {A6C5CCB1-CAFF-4E44-9873-AF8C57593191}.Release|x64.Build.0 = Release|Any CPU - {A6C5CCB1-CAFF-4E44-9873-AF8C57593191}.Release|x86.ActiveCfg = Release|Any CPU - {A6C5CCB1-CAFF-4E44-9873-AF8C57593191}.Release|x86.Build.0 = Release|Any CPU - {A765D70C-CB5A-43A2-9C08-996F83DE22E9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A765D70C-CB5A-43A2-9C08-996F83DE22E9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A765D70C-CB5A-43A2-9C08-996F83DE22E9}.Debug|x64.ActiveCfg = Debug|Any CPU - {A765D70C-CB5A-43A2-9C08-996F83DE22E9}.Debug|x64.Build.0 = Debug|Any CPU - {A765D70C-CB5A-43A2-9C08-996F83DE22E9}.Debug|x86.ActiveCfg = Debug|Any CPU - {A765D70C-CB5A-43A2-9C08-996F83DE22E9}.Debug|x86.Build.0 = Debug|Any CPU - {A765D70C-CB5A-43A2-9C08-996F83DE22E9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A765D70C-CB5A-43A2-9C08-996F83DE22E9}.Release|Any CPU.Build.0 = Release|Any CPU - {A765D70C-CB5A-43A2-9C08-996F83DE22E9}.Release|x64.ActiveCfg = Release|Any CPU - {A765D70C-CB5A-43A2-9C08-996F83DE22E9}.Release|x64.Build.0 = Release|Any CPU - {A765D70C-CB5A-43A2-9C08-996F83DE22E9}.Release|x86.ActiveCfg = Release|Any CPU - {A765D70C-CB5A-43A2-9C08-996F83DE22E9}.Release|x86.Build.0 = Release|Any CPU - {C3450D26-D68E-4A1B-8954-1AFD8C228C43}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C3450D26-D68E-4A1B-8954-1AFD8C228C43}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C3450D26-D68E-4A1B-8954-1AFD8C228C43}.Debug|x64.ActiveCfg = Debug|Any CPU - {C3450D26-D68E-4A1B-8954-1AFD8C228C43}.Debug|x64.Build.0 = Debug|Any CPU - {C3450D26-D68E-4A1B-8954-1AFD8C228C43}.Debug|x86.ActiveCfg = Debug|Any CPU - {C3450D26-D68E-4A1B-8954-1AFD8C228C43}.Debug|x86.Build.0 = Debug|Any CPU - {C3450D26-D68E-4A1B-8954-1AFD8C228C43}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C3450D26-D68E-4A1B-8954-1AFD8C228C43}.Release|Any CPU.Build.0 = Release|Any CPU - {C3450D26-D68E-4A1B-8954-1AFD8C228C43}.Release|x64.ActiveCfg = Release|Any CPU - {C3450D26-D68E-4A1B-8954-1AFD8C228C43}.Release|x64.Build.0 = Release|Any CPU - {C3450D26-D68E-4A1B-8954-1AFD8C228C43}.Release|x86.ActiveCfg = Release|Any CPU - {C3450D26-D68E-4A1B-8954-1AFD8C228C43}.Release|x86.Build.0 = Release|Any CPU - {C4FA42B8-D90D-420C-9353-0CA72375C7D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {C4FA42B8-D90D-420C-9353-0CA72375C7D2}.Debug|Any CPU.Build.0 = Debug|Any CPU - {C4FA42B8-D90D-420C-9353-0CA72375C7D2}.Debug|x64.ActiveCfg = Debug|Any CPU - {C4FA42B8-D90D-420C-9353-0CA72375C7D2}.Debug|x64.Build.0 = Debug|Any CPU - {C4FA42B8-D90D-420C-9353-0CA72375C7D2}.Debug|x86.ActiveCfg = Debug|Any CPU - {C4FA42B8-D90D-420C-9353-0CA72375C7D2}.Debug|x86.Build.0 = Debug|Any CPU - {C4FA42B8-D90D-420C-9353-0CA72375C7D2}.Release|Any CPU.ActiveCfg = Release|Any CPU - {C4FA42B8-D90D-420C-9353-0CA72375C7D2}.Release|Any CPU.Build.0 = Release|Any CPU - {C4FA42B8-D90D-420C-9353-0CA72375C7D2}.Release|x64.ActiveCfg = Release|Any CPU - {C4FA42B8-D90D-420C-9353-0CA72375C7D2}.Release|x64.Build.0 = Release|Any CPU - {C4FA42B8-D90D-420C-9353-0CA72375C7D2}.Release|x86.ActiveCfg = Release|Any CPU - {C4FA42B8-D90D-420C-9353-0CA72375C7D2}.Release|x86.Build.0 = Release|Any CPU + {DCAE6F07-DF90-4318-8469-222337ED2BEB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DCAE6F07-DF90-4318-8469-222337ED2BEB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DCAE6F07-DF90-4318-8469-222337ED2BEB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DCAE6F07-DF90-4318-8469-222337ED2BEB}.Release|Any CPU.Build.0 = Release|Any CPU + {0E2C923C-5BFD-48E8-96D4-82F834F71540}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0E2C923C-5BFD-48E8-96D4-82F834F71540}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0E2C923C-5BFD-48E8-96D4-82F834F71540}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0E2C923C-5BFD-48E8-96D4-82F834F71540}.Release|Any CPU.Build.0 = Release|Any CPU + {7B5EF20D-FB7B-4847-B650-C2622024D22C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7B5EF20D-FB7B-4847-B650-C2622024D22C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7B5EF20D-FB7B-4847-B650-C2622024D22C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7B5EF20D-FB7B-4847-B650-C2622024D22C}.Release|Any CPU.Build.0 = Release|Any CPU + {203B424D-0C02-41CB-B900-A1A98F4ACDE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {203B424D-0C02-41CB-B900-A1A98F4ACDE5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {203B424D-0C02-41CB-B900-A1A98F4ACDE5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {203B424D-0C02-41CB-B900-A1A98F4ACDE5}.Release|Any CPU.Build.0 = Release|Any CPU + {F4E801B6-8DD3-4813-920A-D8C6587BA31D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F4E801B6-8DD3-4813-920A-D8C6587BA31D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F4E801B6-8DD3-4813-920A-D8C6587BA31D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F4E801B6-8DD3-4813-920A-D8C6587BA31D}.Release|Any CPU.Build.0 = Release|Any CPU + {12954591-D7DA-4174-B4B8-4F583B8C54F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {12954591-D7DA-4174-B4B8-4F583B8C54F1}.Debug|Any CPU.Build.0 = Debug|Any CPU + {12954591-D7DA-4174-B4B8-4F583B8C54F1}.Release|Any CPU.ActiveCfg = Release|Any CPU + {12954591-D7DA-4174-B4B8-4F583B8C54F1}.Release|Any CPU.Build.0 = Release|Any CPU + {F9112163-007B-470E-88F0-B2887F2AF7A4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F9112163-007B-470E-88F0-B2887F2AF7A4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F9112163-007B-470E-88F0-B2887F2AF7A4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F9112163-007B-470E-88F0-B2887F2AF7A4}.Release|Any CPU.Build.0 = Release|Any CPU + {1588E1F4-C90F-45C2-8CFA-B06674D9AF42}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {1588E1F4-C90F-45C2-8CFA-B06674D9AF42}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1588E1F4-C90F-45C2-8CFA-B06674D9AF42}.Release|Any CPU.ActiveCfg = Release|Any CPU + {1588E1F4-C90F-45C2-8CFA-B06674D9AF42}.Release|Any CPU.Build.0 = Release|Any CPU + {D7EB84A9-78A1-418A-B7A3-E2E8F4CF9766}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D7EB84A9-78A1-418A-B7A3-E2E8F4CF9766}.Release|Any CPU.ActiveCfg = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(NestedProjects) = preSolution - {ECD91EAB-0067-4812-86AB-8B179157C0CB} = {248E705F-5800-4868-A1F8-A4C7E3910DDA} - {714AE85F-46E4-40F1-B707-A6723724938B} = {ECD91EAB-0067-4812-86AB-8B179157C0CB} - {068C687F-8A6C-4675-966A-876B0F3DEA38} = {ECD91EAB-0067-4812-86AB-8B179157C0CB} - {A6C5CCB1-CAFF-4E44-9873-AF8C57593191} = {ECD91EAB-0067-4812-86AB-8B179157C0CB} - {A765D70C-CB5A-43A2-9C08-996F83DE22E9} = {ECD91EAB-0067-4812-86AB-8B179157C0CB} + {DCAE6F07-DF90-4318-8469-222337ED2BEB} = {A6826CB8-3E89-45F5-9DCC-AC6A83C86190} + {106EBF7E-46DC-4E52-AECC-F1A09DEB4D74} = {A6826CB8-3E89-45F5-9DCC-AC6A83C86190} + {0E2C923C-5BFD-48E8-96D4-82F834F71540} = {106EBF7E-46DC-4E52-AECC-F1A09DEB4D74} + {7B5EF20D-FB7B-4847-B650-C2622024D22C} = {F054F1EB-4793-4A8B-AA71-8C028DC807A4} + {F054F1EB-4793-4A8B-AA71-8C028DC807A4} = {EA978B94-4450-47E9-AE1B-A3703E27DFE6} + {203B424D-0C02-41CB-B900-A1A98F4ACDE5} = {F054F1EB-4793-4A8B-AA71-8C028DC807A4} + {F4E801B6-8DD3-4813-920A-D8C6587BA31D} = {F054F1EB-4793-4A8B-AA71-8C028DC807A4} + {12954591-D7DA-4174-B4B8-4F583B8C54F1} = {EA978B94-4450-47E9-AE1B-A3703E27DFE6} + {F9112163-007B-470E-88F0-B2887F2AF7A4} = {EA978B94-4450-47E9-AE1B-A3703E27DFE6} + {1588E1F4-C90F-45C2-8CFA-B06674D9AF42} = {BE273337-41AE-4ED6-B46A-E1126EF899CD} + {D7EB84A9-78A1-418A-B7A3-E2E8F4CF9766} = {71000320-72B9-4B32-B4C8-5CD2C0B3AB46} EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {20C610B4-DE23-4A0B-9DDD-2BCA6D308915} diff --git a/Images/menu_item_init_project.png b/Documentation/Images/menu_item_init_project.png similarity index 100% rename from Images/menu_item_init_project.png rename to Documentation/Images/menu_item_init_project.png diff --git a/README.md b/README.md index d552952..c4aa94a 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Generate [asmdef](https://docs.unity3d.com/Manual/ScriptCompilationAssemblyDefin - Support Roslyn analyzers - Build Unity code using the .NET CLI. Does not support creating a runnable application -![Initialize Unity project](Images/menu_item_init_project.png) +![Initialize Unity project](Documentation/Images/menu_item_init_project.png) ## About diff --git a/Samples/.editorconfig b/Samples/.editorconfig new file mode 100644 index 0000000..78b36ca --- /dev/null +++ b/Samples/.editorconfig @@ -0,0 +1 @@ +root = true diff --git a/CsprojToAsmdef/.gitignore b/Samples/CsprojToAsmdef.Sample/.gitignore similarity index 100% rename from CsprojToAsmdef/.gitignore rename to Samples/CsprojToAsmdef.Sample/.gitignore diff --git a/CsprojToAsmdef/.vsconfig b/Samples/CsprojToAsmdef.Sample/.vsconfig similarity index 100% rename from CsprojToAsmdef/.vsconfig rename to Samples/CsprojToAsmdef.Sample/.vsconfig diff --git a/CsprojToAsmdef/Assets/.gitignore b/Samples/CsprojToAsmdef.Sample/Assets/.gitignore similarity index 100% rename from CsprojToAsmdef/Assets/.gitignore rename to Samples/CsprojToAsmdef.Sample/Assets/.gitignore diff --git a/Samples/CsprojToAsmdef.Sample/Assets/Directory.Build.props b/Samples/CsprojToAsmdef.Sample/Assets/Directory.Build.props new file mode 100644 index 0000000..0435f9f --- /dev/null +++ b/Samples/CsprojToAsmdef.Sample/Assets/Directory.Build.props @@ -0,0 +1,36 @@ + + + + .obj\ + .bin\ + 7.3 + true + + + + $(MSBuildThisFileDirectory).. + $(MSBuildThisFileDirectory) + + + + DEBUG;TRACE;UNITY_2020_2_3;UNITY_2020_2;UNITY_2020;UNITY_5_3_OR_NEWER;UNITY_5_4_OR_NEWER;UNITY_5_5_OR_NEWER;UNITY_5_6_OR_NEWER;UNITY_2017_1_OR_NEWER;UNITY_2017_2_OR_NEWER;UNITY_2017_3_OR_NEWER;UNITY_2017_4_OR_NEWER;UNITY_2018_1_OR_NEWER;UNITY_2018_2_OR_NEWER;UNITY_2018_3_OR_NEWER;UNITY_2018_4_OR_NEWER;UNITY_2019_1_OR_NEWER;UNITY_2019_2_OR_NEWER;UNITY_2019_3_OR_NEWER;UNITY_2019_4_OR_NEWER;UNITY_2020_1_OR_NEWER;UNITY_2020_2_OR_NEWER;UNITY_INCLUDE_TESTS;USE_SEARCH_ENGINE_API;SCENE_TEMPLATE_MODULE;ENABLE_AR;ENABLE_AUDIO;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_EVENT_QUEUE;ENABLE_MICROPHONE;ENABLE_MULTIPLE_DISPLAYS;ENABLE_PHYSICS;ENABLE_TEXTURE_STREAMING;ENABLE_VIRTUALTEXTURING;ENABLE_UNET;ENABLE_LZMA;ENABLE_UNITYEVENTS;ENABLE_VR;ENABLE_WEBCAM;ENABLE_UNITYWEBREQUEST;ENABLE_WWW;ENABLE_CLOUD_SERVICES;ENABLE_CLOUD_SERVICES_COLLAB;ENABLE_CLOUD_SERVICES_COLLAB_SOFTLOCKS;ENABLE_CLOUD_SERVICES_ADS;ENABLE_CLOUD_SERVICES_USE_WEBREQUEST;ENABLE_CLOUD_SERVICES_CRASH_REPORTING;ENABLE_CLOUD_SERVICES_PURCHASING;ENABLE_CLOUD_SERVICES_ANALYTICS;ENABLE_CLOUD_SERVICES_UNET;ENABLE_CLOUD_SERVICES_BUILD;ENABLE_CLOUD_LICENSE;ENABLE_EDITOR_HUB_LICENSE;ENABLE_WEBSOCKET_CLIENT;ENABLE_DIRECTOR_AUDIO;ENABLE_DIRECTOR_TEXTURE;ENABLE_MANAGED_JOBS;ENABLE_MANAGED_TRANSFORM_JOBS;ENABLE_MANAGED_ANIMATION_JOBS;ENABLE_MANAGED_AUDIO_JOBS;INCLUDE_DYNAMIC_GI;ENABLE_MONO_BDWGC;ENABLE_SCRIPTING_GC_WBARRIERS;PLATFORM_SUPPORTS_MONO;RENDER_SOFTWARE_CURSOR;ENABLE_VIDEO;PLATFORM_STANDALONE;PLATFORM_STANDALONE_WIN;UNITY_STANDALONE_WIN;UNITY_STANDALONE;ENABLE_RUNTIME_GI;ENABLE_MOVIES;ENABLE_NETWORK;ENABLE_CRUNCH_TEXTURE_COMPRESSION;ENABLE_OUT_OF_PROCESS_CRASH_HANDLER;ENABLE_CLUSTER_SYNC;ENABLE_CLUSTERINPUT;PLATFORM_UPDATES_TIME_OUTSIDE_OF_PLAYER_LOOP;GFXDEVICE_WAITFOREVENT_MESSAGEPUMP;ENABLE_WEBSOCKET_HOST;ENABLE_MONO;NET_STANDARD_2_0;ENABLE_PROFILER;UNITY_ASSERTIONS;UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;ENABLE_UNITY_COLLECTIONS_CHECKS;ENABLE_BURST_AOT;UNITY_TEAM_LICENSE;ENABLE_CUSTOM_RENDER_TEXTURE;ENABLE_DIRECTOR;ENABLE_LOCALIZATION;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_TILEMAP;ENABLE_TIMELINE;ENABLE_LEGACY_INPUT_MANAGER;CSHARP_7_OR_LATER;CSHARP_7_3_OR_NEWER + + + + 2019.2.0f1 + {E097FAD1-6243-4DAD-9C02-E9B9EFC3FFC1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + Package + 1.0.11 + Game:1 + StandaloneWindows:5 + + + + + + + + + + + diff --git a/Samples/CsprojToAsmdef.Sample/Assets/Directory.Build.props.meta b/Samples/CsprojToAsmdef.Sample/Assets/Directory.Build.props.meta new file mode 100644 index 0000000..a0ae5a6 --- /dev/null +++ b/Samples/CsprojToAsmdef.Sample/Assets/Directory.Build.props.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6403716819649dd4aa807e0b8ebf4e54 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/CsprojToAsmdef/Assets/Directory.Build.targets b/Samples/CsprojToAsmdef.Sample/Assets/Directory.Build.targets similarity index 100% rename from CsprojToAsmdef/Assets/Directory.Build.targets rename to Samples/CsprojToAsmdef.Sample/Assets/Directory.Build.targets diff --git a/CsprojToAsmdef/Assets/Directory.Build.targets.meta b/Samples/CsprojToAsmdef.Sample/Assets/Directory.Build.targets.meta similarity index 74% rename from CsprojToAsmdef/Assets/Directory.Build.targets.meta rename to Samples/CsprojToAsmdef.Sample/Assets/Directory.Build.targets.meta index ce427df..32ad60f 100644 --- a/CsprojToAsmdef/Assets/Directory.Build.targets.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/Directory.Build.targets.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: df7ac36898fc6c14da248850800776dd +guid: 5d889e1b42b2b0143b7144023141bffb DefaultImporter: externalObjects: {} userData: diff --git a/CsprojToAsmdef/Assets/NuGet.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet.meta similarity index 77% rename from CsprojToAsmdef/Assets/NuGet.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet.meta index 805a0f9..ce3a573 100644 --- a/CsprojToAsmdef/Assets/NuGet.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 38f5cee0864f1f64cb31bf9fff25f713 +guid: aa042a38848b30b4d85a704d64a78cd2 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/CsprojToAsmdef/Assets/NuGet/.gitignore b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/.gitignore similarity index 100% rename from CsprojToAsmdef/Assets/NuGet/.gitignore rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/.gitignore diff --git a/CsprojToAsmdef/Assets/NuGet/ExternalDependency.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/ExternalDependency.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/ExternalDependency.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/ExternalDependency.dll.meta index 4e7602d..0110f62 100644 --- a/CsprojToAsmdef/Assets/NuGet/ExternalDependency.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/ExternalDependency.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: a4137b87765a69044929164e12dd8531 +guid: 6847166c00155f6439d040bad1700995 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/FluentValidation.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/FluentValidation.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/FluentValidation.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/FluentValidation.dll.meta index c08a246..99502c4 100644 --- a/CsprojToAsmdef/Assets/NuGet/FluentValidation.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/FluentValidation.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c7f311a7bc861e144ab9e58c2004a4ba +guid: 177e36ce19c324644b02c05329225754 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Bcl.AsyncInterfaces.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Bcl.AsyncInterfaces.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Bcl.AsyncInterfaces.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Bcl.AsyncInterfaces.dll.meta index f11f591..6d6f852 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Bcl.AsyncInterfaces.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Bcl.AsyncInterfaces.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 30eaddde4e0e434409d2eb43cb392209 +guid: fba94babadef5114e9e3f19a9f9e4a1e PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.Abstractions.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.Abstractions.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.Abstractions.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.Abstractions.dll.meta index 1e4bed8..4491dfa 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.Abstractions.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.Abstractions.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 3ebe3c41f5fdb2c468de4a8ab589dbc4 +guid: fd714c63118f5d64bb3a2d0e9e5ac593 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.Binder.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.Binder.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.Binder.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.Binder.dll.meta index c83a0b8..4729e2c 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.Binder.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.Binder.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: f5990a9e3536c5942916af472cecfd3f +guid: 4086c28479ba69243b634a64cb0f0b7f PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.CommandLine.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.CommandLine.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.CommandLine.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.CommandLine.dll.meta index a2c949a..67fddd8 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.CommandLine.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.CommandLine.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 098d0a2cd333cc9499e61b6d1eadf123 +guid: 48a8d23824a2be94eb22ff4a3146c712 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.EnvironmentVariables.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.EnvironmentVariables.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.EnvironmentVariables.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.EnvironmentVariables.dll.meta index bdeed58..e030f69 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.EnvironmentVariables.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.EnvironmentVariables.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 4e99c26691d15674a916803df9ae9099 +guid: 17a9920b032015246b9edf79e092d91c PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.FileExtensions.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.FileExtensions.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.FileExtensions.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.FileExtensions.dll.meta index d979dd4..434a750 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.FileExtensions.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.FileExtensions.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 802502dcc6422324480743a20cafcf7a +guid: 60909374afa8bba419ac1b655dad9f55 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.Json.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.Json.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.Json.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.Json.dll.meta index 85faf48..f6f475a 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.Json.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.Json.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: fde75bec0816d5744b2979272feff503 +guid: ef5f856f2cb68c144ad08cfe7c5dfd3b PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.UserSecrets.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.UserSecrets.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.UserSecrets.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.UserSecrets.dll.meta index fce385b..6b0151e 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.UserSecrets.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.UserSecrets.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: e2a0029430a0d154fa63416613e5a5a4 +guid: 618a9abe6f3ea6d4a9e3fc636f9b0cd1 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.dll.meta index c4e8c00..0c34ca2 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Configuration.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Configuration.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 75469e3079cdf19488bf3fb50770a156 +guid: fae3b37cebe50a545ba200f80e95da36 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.DependencyInjection.Abstractions.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.DependencyInjection.Abstractions.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.DependencyInjection.Abstractions.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.DependencyInjection.Abstractions.dll.meta index c489544..80020f0 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.DependencyInjection.Abstractions.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.DependencyInjection.Abstractions.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: e6b80cec274a9e44aa9ae6d935548343 +guid: 291c01a34bfc60d4e84b62adbe4b123b PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.DependencyInjection.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.DependencyInjection.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.DependencyInjection.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.DependencyInjection.dll.meta index e733491..7a94233 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.DependencyInjection.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.DependencyInjection.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 28f771e26e4317640bc7671478f8be14 +guid: 57859cdc6b0ef4048bc6197244e2009f PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.FileProviders.Abstractions.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.FileProviders.Abstractions.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.FileProviders.Abstractions.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.FileProviders.Abstractions.dll.meta index e71202b..59dd08b 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.FileProviders.Abstractions.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.FileProviders.Abstractions.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 0a20728d55579da4b9926de83211e1a7 +guid: a945efbc898c8624d8817297daf69f72 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.FileProviders.Physical.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.FileProviders.Physical.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.FileProviders.Physical.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.FileProviders.Physical.dll.meta index 8126a3f..e48cdfb 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.FileProviders.Physical.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.FileProviders.Physical.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b01665d11d04b4946abf19e231891caf +guid: de58a0727b6764645b6c16930737dc24 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.FileSystemGlobbing.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.FileSystemGlobbing.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.FileSystemGlobbing.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.FileSystemGlobbing.dll.meta index c3bfa5a..1bc92e6 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.FileSystemGlobbing.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.FileSystemGlobbing.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 9950d2484fad11142991e2ee78333339 +guid: b9964f2615b550945bdce843f3e2f028 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Hosting.Abstractions.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Hosting.Abstractions.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Hosting.Abstractions.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Hosting.Abstractions.dll.meta index 326f775..b67d2b0 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Hosting.Abstractions.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Hosting.Abstractions.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: d3ba4db0ceed137429ed7fbffe9b0ea1 +guid: 40f166785b17ba047b3cfb3f2df1a06c PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Hosting.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Hosting.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Hosting.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Hosting.dll.meta index 90d9290..031d02b 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Hosting.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Hosting.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 2fc577005a02bf54aabad6d2ca1f45f6 +guid: 0b158307de123e44ea971ba1e03bb134 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.Abstractions.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.Abstractions.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.Abstractions.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.Abstractions.dll.meta index b90814e..d39ea7b 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.Abstractions.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.Abstractions.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: f5587ab73ea89fb41ab518fc6f17805c +guid: c8a7272627549ec4b892474bd30ee2b2 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.Configuration.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.Configuration.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.Configuration.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.Configuration.dll.meta index f00ddf2..a59572e 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.Configuration.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.Configuration.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 4514c0eacf4011c4a9f03071d749794d +guid: 906277ff46cd2934e9df7419f86e724a PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.Console.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.Console.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.Console.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.Console.dll.meta index ac98a59..32a798d 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.Console.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.Console.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 86594d68fa1144a4d9f34ce6b8c9991b +guid: 7ecd8f8d5b76c394d90967ab0eb675d5 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.Debug.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.Debug.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.Debug.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.Debug.dll.meta index d2c1b35..2c253f5 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.Debug.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.Debug.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: a4bf26779783b184bbd672181f916fd6 +guid: 49c8ae2f9f9cd4745ada51786289a989 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.EventLog.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.EventLog.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.EventLog.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.EventLog.dll.meta index 837ecd4..707256f 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.EventLog.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.EventLog.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: e1315e1f7f3c19c46be877df661ad17e +guid: 65a0ea6066a7e824ca407b9a2be3047b PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.EventSource.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.EventSource.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.EventSource.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.EventSource.dll.meta index c519684..1100926 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.EventSource.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.EventSource.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: e9caa0543cd669e4b8bc1a94ef713b88 +guid: 7aee105ed46cceb4e9663e4bf397fed8 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.dll.meta index 6eaba23..414780b 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Logging.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Logging.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 0c6c1d086a97b454bac77770c3c8b999 +guid: c90fef7e49a8c074e8464c68addeaa8c PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Options.ConfigurationExtensions.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Options.ConfigurationExtensions.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Options.ConfigurationExtensions.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Options.ConfigurationExtensions.dll.meta index 12b782e..df4fba0 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Options.ConfigurationExtensions.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Options.ConfigurationExtensions.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: b81defb5ded116643a38d1dc4aeae15b +guid: 372c0ee9de7672348a2f7a3e3cf232ab PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Options.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Options.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Options.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Options.dll.meta index b4a41e3..a2cfe2c 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Options.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Options.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 79613f8ebe0ca1449b020e02c50ca97b +guid: 20f2f739cfc32ec4fbf995f943c4aa68 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Primitives.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Primitives.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Primitives.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Primitives.dll.meta index 1a8eb11..c19a6dc 100644 --- a/CsprojToAsmdef/Assets/NuGet/Microsoft.Extensions.Primitives.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Microsoft.Extensions.Primitives.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: e9f2f836e2310114d93c13d113bd6a86 +guid: 2a6b8018a7726784bb19e141f9bfd146 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/OtherExternalDependency.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/OtherExternalDependency.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/OtherExternalDependency.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/OtherExternalDependency.dll.meta index afc3bdc..6742be4 100644 --- a/CsprojToAsmdef/Assets/NuGet/OtherExternalDependency.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/OtherExternalDependency.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 5438b8832e7b2394fad793e92ad39b0c +guid: 1d2e08bba12fc5a43b9c668ffedf3692 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/Serilog.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Serilog.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/Serilog.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/Serilog.dll.meta index b9a1896..ea05c43 100644 --- a/CsprojToAsmdef/Assets/NuGet/Serilog.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/Serilog.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: d7a99d615093681409ee883010b64ca4 +guid: a53681932cf2787458d61911254f0301 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/System.Buffers.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Buffers.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/System.Buffers.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Buffers.dll.meta index ac53808..6df30a0 100644 --- a/CsprojToAsmdef/Assets/NuGet/System.Buffers.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Buffers.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 9762131f0618ba04d81d4be4239fbd89 +guid: 1c35f3a158a16764bbf19e62451c3b42 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/System.Diagnostics.DiagnosticSource.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Diagnostics.DiagnosticSource.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/System.Diagnostics.DiagnosticSource.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Diagnostics.DiagnosticSource.dll.meta index d355033..a6834aa 100644 --- a/CsprojToAsmdef/Assets/NuGet/System.Diagnostics.DiagnosticSource.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Diagnostics.DiagnosticSource.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: a96e4043b28564c4b870a910b7334bb0 +guid: 6d08a3b889912cf40a246391b288e04d PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/System.Diagnostics.EventLog.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Diagnostics.EventLog.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/System.Diagnostics.EventLog.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Diagnostics.EventLog.dll.meta index be83935..97e4a76 100644 --- a/CsprojToAsmdef/Assets/NuGet/System.Diagnostics.EventLog.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Diagnostics.EventLog.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 0b26e4523a83729418986d0a2042cece +guid: 8af28f437e5bdc54bb6d0c8b0e98fe0a PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/System.Memory.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Memory.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/System.Memory.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Memory.dll.meta index 3134edc..a310de7 100644 --- a/CsprojToAsmdef/Assets/NuGet/System.Memory.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Memory.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 3b3124592dee81a48a102ad23075b722 +guid: 7410d6f2add721241ba65ec17e0539f2 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/System.Numerics.Vectors.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Numerics.Vectors.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/System.Numerics.Vectors.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Numerics.Vectors.dll.meta index 6666c6d..50fa01b 100644 --- a/CsprojToAsmdef/Assets/NuGet/System.Numerics.Vectors.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Numerics.Vectors.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: e4fd67885e7c2a4408870269edd7488f +guid: 892abc326d2e5294494a33a1055e42e7 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/System.Runtime.CompilerServices.Unsafe.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Runtime.CompilerServices.Unsafe.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/System.Runtime.CompilerServices.Unsafe.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Runtime.CompilerServices.Unsafe.dll.meta index ceb81da..a70e6c4 100644 --- a/CsprojToAsmdef/Assets/NuGet/System.Runtime.CompilerServices.Unsafe.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Runtime.CompilerServices.Unsafe.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 3de0979ba23a8d64a8cbabc53d6fde72 +guid: c00385129148c874c8bfcaf535c7c599 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/System.Security.Principal.Windows.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Security.Principal.Windows.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/System.Security.Principal.Windows.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Security.Principal.Windows.dll.meta index 59fd96d..68a0efc 100644 --- a/CsprojToAsmdef/Assets/NuGet/System.Security.Principal.Windows.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Security.Principal.Windows.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 09a627595414a7c4baceb8404110cc6b +guid: aca897e322004b542a9663b920422b81 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/System.Text.Encodings.Web.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Text.Encodings.Web.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/System.Text.Encodings.Web.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Text.Encodings.Web.dll.meta index cebf2e6..2df2f58 100644 --- a/CsprojToAsmdef/Assets/NuGet/System.Text.Encodings.Web.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Text.Encodings.Web.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 5860263046f2e6447a6be012b0ec30b5 +guid: 51d77268426b77544a985a8373a1d222 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/System.Text.Json.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Text.Json.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/System.Text.Json.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Text.Json.dll.meta index ff6b13d..05e1e11 100644 --- a/CsprojToAsmdef/Assets/NuGet/System.Text.Json.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Text.Json.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: bbcbf4a25e728cc41abcc242e9ad7bfb +guid: 5b25cc04f55723b4d8fcbb0f5453d7df PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/NuGet/System.Threading.Tasks.Extensions.dll.meta b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Threading.Tasks.Extensions.dll.meta similarity index 93% rename from CsprojToAsmdef/Assets/NuGet/System.Threading.Tasks.Extensions.dll.meta rename to Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Threading.Tasks.Extensions.dll.meta index 5cdad0c..a6606b3 100644 --- a/CsprojToAsmdef/Assets/NuGet/System.Threading.Tasks.Extensions.dll.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/NuGet/System.Threading.Tasks.Extensions.dll.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 628e8524ae0335d41ab2125c8f837001 +guid: 32b4653098c627740ac5e2fe36e5b8a6 PluginImporter: externalObjects: {} serializedVersion: 2 diff --git a/CsprojToAsmdef/Assets/Sample.meta b/Samples/CsprojToAsmdef.Sample/Assets/Sample.meta similarity index 77% rename from CsprojToAsmdef/Assets/Sample.meta rename to Samples/CsprojToAsmdef.Sample/Assets/Sample.meta index df30673..d0803d3 100644 --- a/CsprojToAsmdef/Assets/Sample.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/Sample.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: c173e9d4e44db404da66c24f9f77fa06 +guid: c625e3aab2fa88246b52aa1277b2980f folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/CsprojToAsmdef/Assets/Sample/Sample.asmdef b/Samples/CsprojToAsmdef.Sample/Assets/Sample/Sample.asmdef similarity index 100% rename from CsprojToAsmdef/Assets/Sample/Sample.asmdef rename to Samples/CsprojToAsmdef.Sample/Assets/Sample/Sample.asmdef diff --git a/CsprojToAsmdef/Assets/Sample/Sample.asmdef.meta b/Samples/CsprojToAsmdef.Sample/Assets/Sample/Sample.asmdef.meta similarity index 100% rename from CsprojToAsmdef/Assets/Sample/Sample.asmdef.meta rename to Samples/CsprojToAsmdef.Sample/Assets/Sample/Sample.asmdef.meta diff --git a/CsprojToAsmdef/Assets/Sample/Sample.csproj b/Samples/CsprojToAsmdef.Sample/Assets/Sample/Sample.csproj similarity index 100% rename from CsprojToAsmdef/Assets/Sample/Sample.csproj rename to Samples/CsprojToAsmdef.Sample/Assets/Sample/Sample.csproj diff --git a/CsprojToAsmdef/Assets/Sample/Sample.csproj.meta b/Samples/CsprojToAsmdef.Sample/Assets/Sample/Sample.csproj.meta similarity index 100% rename from CsprojToAsmdef/Assets/Sample/Sample.csproj.meta rename to Samples/CsprojToAsmdef.Sample/Assets/Sample/Sample.csproj.meta diff --git a/CsprojToAsmdef/Assets/Sample/Scenes.meta b/Samples/CsprojToAsmdef.Sample/Assets/Sample/Scenes.meta similarity index 100% rename from CsprojToAsmdef/Assets/Sample/Scenes.meta rename to Samples/CsprojToAsmdef.Sample/Assets/Sample/Scenes.meta diff --git a/CsprojToAsmdef/Assets/Sample/Scenes/SampleScene.unity b/Samples/CsprojToAsmdef.Sample/Assets/Sample/Scenes/SampleScene.unity similarity index 100% rename from CsprojToAsmdef/Assets/Sample/Scenes/SampleScene.unity rename to Samples/CsprojToAsmdef.Sample/Assets/Sample/Scenes/SampleScene.unity diff --git a/CsprojToAsmdef/Assets/Sample/Scenes/SampleScene.unity.meta b/Samples/CsprojToAsmdef.Sample/Assets/Sample/Scenes/SampleScene.unity.meta similarity index 100% rename from CsprojToAsmdef/Assets/Sample/Scenes/SampleScene.unity.meta rename to Samples/CsprojToAsmdef.Sample/Assets/Sample/Scenes/SampleScene.unity.meta diff --git a/CsprojToAsmdef/Assets/Sample/Scripts.meta b/Samples/CsprojToAsmdef.Sample/Assets/Sample/Scripts.meta similarity index 100% rename from CsprojToAsmdef/Assets/Sample/Scripts.meta rename to Samples/CsprojToAsmdef.Sample/Assets/Sample/Scripts.meta diff --git a/CsprojToAsmdef/Assets/Sample/Scripts/.editorconfig b/Samples/CsprojToAsmdef.Sample/Assets/Sample/Scripts/.editorconfig similarity index 100% rename from CsprojToAsmdef/Assets/Sample/Scripts/.editorconfig rename to Samples/CsprojToAsmdef.Sample/Assets/Sample/Scripts/.editorconfig diff --git a/CsprojToAsmdef/Assets/Sample/Scripts/Hello.cs b/Samples/CsprojToAsmdef.Sample/Assets/Sample/Scripts/Hello.cs similarity index 100% rename from CsprojToAsmdef/Assets/Sample/Scripts/Hello.cs rename to Samples/CsprojToAsmdef.Sample/Assets/Sample/Scripts/Hello.cs diff --git a/CsprojToAsmdef/Assets/Sample/Scripts/Hello.cs.meta b/Samples/CsprojToAsmdef.Sample/Assets/Sample/Scripts/Hello.cs.meta similarity index 100% rename from CsprojToAsmdef/Assets/Sample/Scripts/Hello.cs.meta rename to Samples/CsprojToAsmdef.Sample/Assets/Sample/Scripts/Hello.cs.meta diff --git a/CsprojToAsmdef/Assets/SampleUnityDependency.meta b/Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency.meta similarity index 77% rename from CsprojToAsmdef/Assets/SampleUnityDependency.meta rename to Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency.meta index 3975c37..d820e58 100644 --- a/CsprojToAsmdef/Assets/SampleUnityDependency.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 2e20b1a58452a1b408e8a9cfa71577bf +guid: fe391938dcb2ed24696774fe74a0243e folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/CsprojToAsmdef/Assets/SampleUnityDependency/CustomLogger.cs b/Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency/CustomLogger.cs similarity index 100% rename from CsprojToAsmdef/Assets/SampleUnityDependency/CustomLogger.cs rename to Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency/CustomLogger.cs diff --git a/CsprojToAsmdef/Assets/SampleUnityDependency/CustomLogger.cs.meta b/Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency/CustomLogger.cs.meta similarity index 100% rename from CsprojToAsmdef/Assets/SampleUnityDependency/CustomLogger.cs.meta rename to Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency/CustomLogger.cs.meta diff --git a/CsprojToAsmdef/Assets/SampleUnityDependency/SampleUnityDependency.asmdef b/Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency/SampleUnityDependency.asmdef similarity index 100% rename from CsprojToAsmdef/Assets/SampleUnityDependency/SampleUnityDependency.asmdef rename to Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency/SampleUnityDependency.asmdef diff --git a/CsprojToAsmdef/Assets/SampleUnityDependency/SampleUnityDependency.asmdef.meta b/Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency/SampleUnityDependency.asmdef.meta similarity index 100% rename from CsprojToAsmdef/Assets/SampleUnityDependency/SampleUnityDependency.asmdef.meta rename to Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency/SampleUnityDependency.asmdef.meta diff --git a/CsprojToAsmdef/Assets/SampleUnityDependency/SampleUnityDependency.csproj b/Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency/SampleUnityDependency.csproj similarity index 100% rename from CsprojToAsmdef/Assets/SampleUnityDependency/SampleUnityDependency.csproj rename to Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency/SampleUnityDependency.csproj diff --git a/CsprojToAsmdef/Assets/SampleUnityDependency/SampleUnityDependency.csproj.meta b/Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency/SampleUnityDependency.csproj.meta similarity index 100% rename from CsprojToAsmdef/Assets/SampleUnityDependency/SampleUnityDependency.csproj.meta rename to Samples/CsprojToAsmdef.Sample/Assets/SampleUnityDependency/SampleUnityDependency.csproj.meta diff --git a/CsprojToAsmdef/Assets/SomeOtherDependency.meta b/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency.meta similarity index 77% rename from CsprojToAsmdef/Assets/SomeOtherDependency.meta rename to Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency.meta index bb6825b..75a10b1 100644 --- a/CsprojToAsmdef/Assets/SomeOtherDependency.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: ea9348ed8a0359548bf35f02ba450c5d +guid: cf4435423ab9ac24397312e7bd334e9c folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/CsprojToAsmdef/Assets/SomeOtherDependency/Messenger.cs b/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/Messenger.cs similarity index 100% rename from CsprojToAsmdef/Assets/SomeOtherDependency/Messenger.cs rename to Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/Messenger.cs diff --git a/CsprojToAsmdef/Assets/SomeOtherDependency/Messenger.cs.meta b/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/Messenger.cs.meta similarity index 100% rename from CsprojToAsmdef/Assets/SomeOtherDependency/Messenger.cs.meta rename to Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/Messenger.cs.meta diff --git a/CsprojToAsmdef/Assets/SomeOtherDependency/SomeOtherDependency.asmdef b/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/SomeOtherDependency.asmdef similarity index 100% rename from CsprojToAsmdef/Assets/SomeOtherDependency/SomeOtherDependency.asmdef rename to Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/SomeOtherDependency.asmdef diff --git a/CsprojToAsmdef/Assets/SomeOtherDependency/SomeOtherDependency.asmdef.meta b/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/SomeOtherDependency.asmdef.meta similarity index 100% rename from CsprojToAsmdef/Assets/SomeOtherDependency/SomeOtherDependency.asmdef.meta rename to Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/SomeOtherDependency.asmdef.meta diff --git a/CsprojToAsmdef/Assets/SomeOtherDependency/SomeOtherDependency.csproj b/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/SomeOtherDependency.csproj similarity index 100% rename from CsprojToAsmdef/Assets/SomeOtherDependency/SomeOtherDependency.csproj rename to Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/SomeOtherDependency.csproj diff --git a/CsprojToAsmdef/Assets/SomeOtherDependency/SomeOtherDependency.csproj.meta b/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/SomeOtherDependency.csproj.meta similarity index 100% rename from CsprojToAsmdef/Assets/SomeOtherDependency/SomeOtherDependency.csproj.meta rename to Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/SomeOtherDependency.csproj.meta diff --git a/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/bin.meta b/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/bin.meta new file mode 100644 index 0000000..4b02cad --- /dev/null +++ b/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/bin.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6403fd5384a023c49b9dd3e2a311704e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/obj.meta b/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/obj.meta new file mode 100644 index 0000000..fef7fc3 --- /dev/null +++ b/Samples/CsprojToAsmdef.Sample/Assets/SomeOtherDependency/obj.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7069c8249baf3d044b23bf008d9e15f6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/CsprojToAsmdef/Assets/TextMesh Pro.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro.meta similarity index 77% rename from CsprojToAsmdef/Assets/TextMesh Pro.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro.meta index f9da8b5..8e0448d 100644 --- a/CsprojToAsmdef/Assets/TextMesh Pro.meta +++ b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: f54d1bd14bd3ca042bd867b519fee8cc +guid: b79b86c9203faa64c8f362531f667d55 folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Fonts.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Fonts.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Fonts.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Fonts.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Fonts/LiberationSans.ttf b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Fonts/LiberationSans.ttf similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Fonts/LiberationSans.ttf rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Fonts/LiberationSans.ttf diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Fonts/LiberationSans.ttf.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Sprite Assets.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Sprite Assets.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Sprite Assets.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Sprite Assets.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Style Sheets.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Style Sheets.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Style Sheets.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Style Sheets.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/TMP Settings.asset b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/TMP Settings.asset similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/TMP Settings.asset rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/TMP Settings.asset diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Resources/TMP Settings.asset.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF.shader b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF.shader similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF.shader rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF.shader diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro.cginc b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro.cginc similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro.cginc rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro.cginc diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Sprites.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Sprites.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Sprites/EmojiOne.json b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites/EmojiOne.json similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Sprites/EmojiOne.json rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites/EmojiOne.json diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Sprites/EmojiOne.png b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites/EmojiOne.png similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Sprites/EmojiOne.png rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites/EmojiOne.png diff --git a/CsprojToAsmdef/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta b/Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta similarity index 100% rename from CsprojToAsmdef/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta rename to Samples/CsprojToAsmdef.Sample/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta diff --git a/Samples/CsprojToAsmdef.Sample/Packages/manifest.json b/Samples/CsprojToAsmdef.Sample/Packages/manifest.json new file mode 100644 index 0000000..3b2de4a --- /dev/null +++ b/Samples/CsprojToAsmdef.Sample/Packages/manifest.json @@ -0,0 +1,53 @@ +{ + "dependencies": { + "com.kuraiandras.csprojtoasmdef": "file:../../../Sources/CsprojToAsmdef/Assets/CsprojToAsmdef", + "com.serilog.sinks.unity3d": "2.0.1", + "com.unity.ide.rider": "1.0.8", + "com.unity.ide.visualstudio": "1.0.11", + "com.unity.ide.vscode": "1.2.3", + "com.unity.package-manager-ui": "2.2.0", + "com.unity.textmeshpro": "2.1.5", + "com.unity.ugui": "1.0.0", + "com.unity.modules.ai": "1.0.0", + "com.unity.modules.androidjni": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.cloth": "1.0.0", + "com.unity.modules.director": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.physics2d": "1.0.0", + "com.unity.modules.screencapture": "1.0.0", + "com.unity.modules.terrain": "1.0.0", + "com.unity.modules.terrainphysics": "1.0.0", + "com.unity.modules.tilemap": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.uielements": "1.0.0", + "com.unity.modules.umbra": "1.0.0", + "com.unity.modules.unityanalytics": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.unitywebrequesttexture": "1.0.0", + "com.unity.modules.unitywebrequestwww": "1.0.0", + "com.unity.modules.vehicles": "1.0.0", + "com.unity.modules.video": "1.0.0", + "com.unity.modules.vr": "1.0.0", + "com.unity.modules.wind": "1.0.0", + "com.unity.modules.xr": "1.0.0" + }, + "scopedRegistries": [ + { + "name": "package.openupm.com", + "url": "https://package.openupm.com", + "scopes": [ + "com.openupm", + "com.serilog.sinks.unity3d" + ] + } + ] +} diff --git a/CsprojToAsmdef/ProjectSettings/AudioManager.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/AudioManager.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/AudioManager.asset rename to Samples/CsprojToAsmdef.Sample/ProjectSettings/AudioManager.asset diff --git a/CsprojToAsmdef/ProjectSettings/ClusterInputManager.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/ClusterInputManager.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/ClusterInputManager.asset rename to Samples/CsprojToAsmdef.Sample/ProjectSettings/ClusterInputManager.asset diff --git a/CsprojToAsmdef/ProjectSettings/DynamicsManager.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/DynamicsManager.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/DynamicsManager.asset rename to Samples/CsprojToAsmdef.Sample/ProjectSettings/DynamicsManager.asset diff --git a/CsprojToAsmdef/ProjectSettings/EditorBuildSettings.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/EditorBuildSettings.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/EditorBuildSettings.asset rename to Samples/CsprojToAsmdef.Sample/ProjectSettings/EditorBuildSettings.asset diff --git a/Samples/CsprojToAsmdef.Sample/ProjectSettings/EditorSettings.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/EditorSettings.asset new file mode 100644 index 0000000..2569d13 --- /dev/null +++ b/Samples/CsprojToAsmdef.Sample/ProjectSettings/EditorSettings.asset @@ -0,0 +1,26 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!159 &1 +EditorSettings: + m_ObjectHideFlags: 0 + serializedVersion: 8 + m_ExternalVersionControlSupport: Hidden Meta Files + m_SerializationMode: 2 + m_LineEndingsForNewScripts: 2 + m_DefaultBehaviorMode: 0 + m_PrefabRegularEnvironment: {fileID: 0} + m_PrefabUIEnvironment: {fileID: 0} + m_SpritePackerMode: 0 + m_SpritePackerPaddingPower: 1 + m_EtcTextureCompressorBehavior: 1 + m_EtcTextureFastCompressor: 1 + m_EtcTextureNormalCompressor: 2 + m_EtcTextureBestCompressor: 4 + m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref + m_ProjectGenerationRootNamespace: + m_CollabEditorSettings: + inProgressEnabled: 1 + m_EnableTextureStreamingInEditMode: 1 + m_EnableTextureStreamingInPlayMode: 1 + m_AsyncShaderCompilation: 1 + m_ShowLightmapResolutionOverlay: 1 diff --git a/Samples/CsprojToAsmdef.Sample/ProjectSettings/GraphicsSettings.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/GraphicsSettings.asset new file mode 100644 index 0000000..74d7b53 --- /dev/null +++ b/Samples/CsprojToAsmdef.Sample/ProjectSettings/GraphicsSettings.asset @@ -0,0 +1,61 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!30 &1 +GraphicsSettings: + m_ObjectHideFlags: 0 + serializedVersion: 12 + m_Deferred: + m_Mode: 1 + m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} + m_DeferredReflections: + m_Mode: 1 + m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} + m_ScreenSpaceShadows: + m_Mode: 1 + m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} + m_LegacyDeferred: + m_Mode: 1 + m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} + m_DepthNormals: + m_Mode: 1 + m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} + m_MotionVectors: + m_Mode: 1 + m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} + m_LightHalo: + m_Mode: 1 + m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} + m_LensFlare: + m_Mode: 1 + m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} + m_AlwaysIncludedShaders: + - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} + - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} + m_PreloadedShaders: [] + m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, + type: 0} + m_CustomRenderPipeline: {fileID: 0} + m_TransparencySortMode: 0 + m_TransparencySortAxis: {x: 0, y: 0, z: 1} + m_DefaultRenderingPath: 1 + m_DefaultMobileRenderingPath: 1 + m_TierSettings: [] + m_LightmapStripping: 0 + m_FogStripping: 0 + m_InstancingStripping: 0 + m_LightmapKeepPlain: 1 + m_LightmapKeepDirCombined: 1 + m_LightmapKeepDynamicPlain: 1 + m_LightmapKeepDynamicDirCombined: 1 + m_LightmapKeepShadowMask: 1 + m_LightmapKeepSubtractive: 1 + m_FogKeepLinear: 1 + m_FogKeepExp: 1 + m_FogKeepExp2: 1 + m_AlbedoSwatchInfos: [] + m_LightsUseLinearIntensity: 0 + m_LightsUseColorTemperature: 0 diff --git a/CsprojToAsmdef/ProjectSettings/InputManager.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/InputManager.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/InputManager.asset rename to Samples/CsprojToAsmdef.Sample/ProjectSettings/InputManager.asset diff --git a/CsprojToAsmdef/ProjectSettings/NavMeshAreas.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/NavMeshAreas.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/NavMeshAreas.asset rename to Samples/CsprojToAsmdef.Sample/ProjectSettings/NavMeshAreas.asset diff --git a/CsprojToAsmdef/ProjectSettings/Physics2DSettings.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/Physics2DSettings.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/Physics2DSettings.asset rename to Samples/CsprojToAsmdef.Sample/ProjectSettings/Physics2DSettings.asset diff --git a/Samples/CsprojToAsmdef.Sample/ProjectSettings/PresetManager.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/PresetManager.asset new file mode 100644 index 0000000..636a595 --- /dev/null +++ b/Samples/CsprojToAsmdef.Sample/ProjectSettings/PresetManager.asset @@ -0,0 +1,6 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1386491679 &1 +PresetManager: + m_ObjectHideFlags: 0 + m_DefaultList: [] diff --git a/Samples/CsprojToAsmdef.Sample/ProjectSettings/ProjectSettings.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/ProjectSettings.asset new file mode 100644 index 0000000..6783a6a --- /dev/null +++ b/Samples/CsprojToAsmdef.Sample/ProjectSettings/ProjectSettings.asset @@ -0,0 +1,649 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!129 &1 +PlayerSettings: + m_ObjectHideFlags: 0 + serializedVersion: 18 + productGUID: 80483f12695261e45a5396417ddfaeb0 + AndroidProfiler: 0 + AndroidFilterTouchesWhenObscured: 0 + AndroidEnableSustainedPerformanceMode: 0 + defaultScreenOrientation: 4 + targetDevice: 2 + useOnDemandResources: 0 + accelerometerFrequency: 60 + companyName: DefaultCompany + productName: CsprojToAsmdef.Sample + defaultCursor: {fileID: 0} + cursorHotspot: {x: 0, y: 0} + m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} + m_ShowUnitySplashScreen: 1 + m_ShowUnitySplashLogo: 1 + m_SplashScreenOverlayOpacity: 1 + m_SplashScreenAnimation: 1 + m_SplashScreenLogoStyle: 1 + m_SplashScreenDrawMode: 0 + m_SplashScreenBackgroundAnimationZoom: 1 + m_SplashScreenLogoAnimationZoom: 1 + m_SplashScreenBackgroundLandscapeAspect: 1 + m_SplashScreenBackgroundPortraitAspect: 1 + m_SplashScreenBackgroundLandscapeUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenBackgroundPortraitUvs: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + m_SplashScreenLogos: [] + m_VirtualRealitySplashScreen: {fileID: 0} + m_HolographicTrackingLossScreen: {fileID: 0} + defaultScreenWidth: 1024 + defaultScreenHeight: 768 + defaultScreenWidthWeb: 960 + defaultScreenHeightWeb: 600 + m_StereoRenderingPath: 0 + m_ActiveColorSpace: 0 + m_MTRendering: 1 + m_StackTraceTypes: 010000000100000001000000010000000100000001000000 + iosShowActivityIndicatorOnLoading: -1 + androidShowActivityIndicatorOnLoading: -1 + displayResolutionDialog: 0 + iosUseCustomAppBackgroundBehavior: 0 + iosAllowHTTPDownload: 1 + allowedAutorotateToPortrait: 1 + allowedAutorotateToPortraitUpsideDown: 1 + allowedAutorotateToLandscapeRight: 1 + allowedAutorotateToLandscapeLeft: 1 + useOSAutorotation: 1 + use32BitDisplayBuffer: 1 + preserveFramebufferAlpha: 0 + disableDepthAndStencilBuffers: 0 + androidStartInFullscreen: 1 + androidRenderOutsideSafeArea: 1 + androidUseSwappy: 0 + androidBlitType: 0 + defaultIsNativeResolution: 1 + macRetinaSupport: 1 + runInBackground: 1 + captureSingleScreen: 0 + muteOtherAudioSources: 0 + Prepare IOS For Recording: 0 + Force IOS Speakers When Recording: 0 + deferSystemGesturesMode: 0 + hideHomeButton: 0 + submitAnalytics: 1 + usePlayerLog: 1 + bakeCollisionMeshes: 0 + forceSingleInstance: 0 + useFlipModelSwapchain: 1 + resizableWindow: 0 + useMacAppStoreValidation: 0 + macAppStoreCategory: public.app-category.games + gpuSkinning: 1 + graphicsJobs: 0 + xboxPIXTextureCapture: 0 + xboxEnableAvatar: 0 + xboxEnableKinect: 0 + xboxEnableKinectAutoTracking: 0 + xboxEnableFitness: 0 + visibleInBackground: 1 + allowFullscreenSwitch: 1 + graphicsJobMode: 0 + fullscreenMode: 1 + xboxSpeechDB: 0 + xboxEnableHeadOrientation: 0 + xboxEnableGuest: 0 + xboxEnablePIXSampling: 0 + metalFramebufferOnly: 0 + xboxOneResolution: 0 + xboxOneSResolution: 0 + xboxOneXResolution: 3 + xboxOneMonoLoggingLevel: 0 + xboxOneLoggingLevel: 1 + xboxOneDisableEsram: 0 + xboxOnePresentImmediateThreshold: 0 + switchQueueCommandMemory: 0 + switchQueueControlMemory: 16384 + switchQueueComputeMemory: 262144 + switchNVNShaderPoolsGranularity: 33554432 + switchNVNDefaultPoolsGranularity: 16777216 + switchNVNOtherPoolsGranularity: 16777216 + vulkanEnableSetSRGBWrite: 0 + m_SupportedAspectRatios: + 4:3: 1 + 5:4: 1 + 16:10: 1 + 16:9: 1 + Others: 1 + bundleVersion: 0.1 + preloadedAssets: [] + metroInputSource: 0 + wsaTransparentSwapchain: 0 + m_HolographicPauseOnTrackingLoss: 1 + xboxOneDisableKinectGpuReservation: 1 + xboxOneEnable7thCore: 1 + vrSettings: + cardboard: + depthFormat: 0 + enableTransitionView: 0 + daydream: + depthFormat: 0 + useSustainedPerformanceMode: 0 + enableVideoLayer: 0 + useProtectedVideoMemory: 0 + minimumSupportedHeadTracking: 0 + maximumSupportedHeadTracking: 1 + hololens: + depthFormat: 1 + depthBufferSharingEnabled: 1 + lumin: + depthFormat: 0 + frameTiming: 2 + enableGLCache: 0 + glCacheMaxBlobSize: 524288 + glCacheMaxFileSize: 8388608 + oculus: + sharedDepthBuffer: 1 + dashSupport: 1 + lowOverheadMode: 0 + enable360StereoCapture: 0 + isWsaHolographicRemotingEnabled: 0 + protectGraphicsMemory: 0 + enableFrameTimingStats: 0 + useHDRDisplay: 0 + m_ColorGamuts: 00000000 + targetPixelDensity: 30 + resolutionScalingMode: 0 + androidSupportedAspectRatio: 1 + androidMaxAspectRatio: 2.1 + applicationIdentifier: {} + buildNumber: {} + AndroidBundleVersionCode: 1 + AndroidMinSdkVersion: 16 + AndroidTargetSdkVersion: 0 + AndroidPreferredInstallLocation: 1 + aotOptions: + stripEngineCode: 1 + iPhoneStrippingLevel: 0 + iPhoneScriptCallOptimization: 0 + ForceInternetPermission: 0 + ForceSDCardPermission: 0 + CreateWallpaper: 0 + APKExpansionFiles: 0 + keepLoadedShadersAlive: 0 + StripUnusedMeshComponents: 1 + VertexChannelCompressionMask: 4054 + iPhoneSdkVersion: 988 + iOSTargetOSVersionString: 9.0 + tvOSSdkVersion: 0 + tvOSRequireExtendedGameController: 0 + tvOSTargetOSVersionString: 9.0 + uIPrerenderedIcon: 0 + uIRequiresPersistentWiFi: 0 + uIRequiresFullScreen: 1 + uIStatusBarHidden: 1 + uIExitOnSuspend: 0 + uIStatusBarStyle: 0 + iPhoneSplashScreen: {fileID: 0} + iPhoneHighResSplashScreen: {fileID: 0} + iPhoneTallHighResSplashScreen: {fileID: 0} + iPhone47inSplashScreen: {fileID: 0} + iPhone55inPortraitSplashScreen: {fileID: 0} + iPhone55inLandscapeSplashScreen: {fileID: 0} + iPhone58inPortraitSplashScreen: {fileID: 0} + iPhone58inLandscapeSplashScreen: {fileID: 0} + iPadPortraitSplashScreen: {fileID: 0} + iPadHighResPortraitSplashScreen: {fileID: 0} + iPadLandscapeSplashScreen: {fileID: 0} + iPadHighResLandscapeSplashScreen: {fileID: 0} + iPhone65inPortraitSplashScreen: {fileID: 0} + iPhone65inLandscapeSplashScreen: {fileID: 0} + iPhone61inPortraitSplashScreen: {fileID: 0} + iPhone61inLandscapeSplashScreen: {fileID: 0} + appleTVSplashScreen: {fileID: 0} + appleTVSplashScreen2x: {fileID: 0} + tvOSSmallIconLayers: [] + tvOSSmallIconLayers2x: [] + tvOSLargeIconLayers: [] + tvOSLargeIconLayers2x: [] + tvOSTopShelfImageLayers: [] + tvOSTopShelfImageLayers2x: [] + tvOSTopShelfImageWideLayers: [] + tvOSTopShelfImageWideLayers2x: [] + iOSLaunchScreenType: 0 + iOSLaunchScreenPortrait: {fileID: 0} + iOSLaunchScreenLandscape: {fileID: 0} + iOSLaunchScreenBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreenFillPct: 100 + iOSLaunchScreenSize: 100 + iOSLaunchScreenCustomXibPath: + iOSLaunchScreeniPadType: 0 + iOSLaunchScreeniPadImage: {fileID: 0} + iOSLaunchScreeniPadBackgroundColor: + serializedVersion: 2 + rgba: 0 + iOSLaunchScreeniPadFillPct: 100 + iOSLaunchScreeniPadSize: 100 + iOSLaunchScreeniPadCustomXibPath: + iOSUseLaunchScreenStoryboard: 0 + iOSLaunchScreenCustomStoryboardPath: + iOSDeviceRequirements: [] + iOSURLSchemes: [] + iOSBackgroundModes: 0 + iOSMetalForceHardShadows: 0 + metalEditorSupport: 1 + metalAPIValidation: 1 + iOSRenderExtraFrameOnPause: 0 + appleDeveloperTeamID: + iOSManualSigningProvisioningProfileID: + tvOSManualSigningProvisioningProfileID: + iOSManualSigningProvisioningProfileType: 0 + tvOSManualSigningProvisioningProfileType: 0 + appleEnableAutomaticSigning: 0 + iOSRequireARKit: 0 + iOSAutomaticallyDetectAndAddCapabilities: 1 + appleEnableProMotion: 0 + clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea + templatePackageId: com.unity.template.3d@3.1.0 + templateDefaultScene: Assets/Scenes/SampleScene.unity + AndroidTargetArchitectures: 1 + AndroidSplashScreenScale: 0 + androidSplashScreen: {fileID: 0} + AndroidKeystoreName: '{inproject}: ' + AndroidKeyaliasName: + AndroidBuildApkPerCpuArchitecture: 0 + AndroidTVCompatibility: 0 + AndroidIsGame: 1 + AndroidEnableTango: 0 + androidEnableBanner: 1 + androidUseLowAccuracyLocation: 0 + androidUseCustomKeystore: 0 + m_AndroidBanners: + - width: 320 + height: 180 + banner: {fileID: 0} + androidGamepadSupportLevel: 0 + AndroidValidateAppBundleSize: 1 + AndroidAppBundleSizeToValidate: 150 + resolutionDialogBanner: {fileID: 0} + m_BuildTargetIcons: [] + m_BuildTargetPlatformIcons: [] + m_BuildTargetBatching: + - m_BuildTarget: Standalone + m_StaticBatching: 1 + m_DynamicBatching: 0 + - m_BuildTarget: tvOS + m_StaticBatching: 1 + m_DynamicBatching: 0 + - m_BuildTarget: Android + m_StaticBatching: 1 + m_DynamicBatching: 0 + - m_BuildTarget: iPhone + m_StaticBatching: 1 + m_DynamicBatching: 0 + - m_BuildTarget: WebGL + m_StaticBatching: 0 + m_DynamicBatching: 0 + m_BuildTargetGraphicsAPIs: + - m_BuildTarget: AndroidPlayer + m_APIs: 150000000b000000 + m_Automatic: 0 + - m_BuildTarget: iOSSupport + m_APIs: 10000000 + m_Automatic: 1 + - m_BuildTarget: AppleTVSupport + m_APIs: 10000000 + m_Automatic: 0 + - m_BuildTarget: WebGLSupport + m_APIs: 0b000000 + m_Automatic: 1 + m_BuildTargetVRSettings: + - m_BuildTarget: Standalone + m_Enabled: 0 + m_Devices: + - Oculus + - OpenVR + openGLRequireES31: 0 + openGLRequireES31AEP: 0 + openGLRequireES32: 0 + vuforiaEnabled: 0 + m_TemplateCustomTags: {} + mobileMTRendering: + Android: 1 + iPhone: 1 + tvOS: 1 + m_BuildTargetGroupLightmapEncodingQuality: [] + m_BuildTargetGroupLightmapSettings: [] + playModeTestRunnerEnabled: 0 + runPlayModeTestAsEditModeTest: 0 + actionOnDotNetUnhandledException: 1 + enableInternalProfiler: 0 + logObjCUncaughtExceptions: 1 + enableCrashReportAPI: 0 + cameraUsageDescription: + locationUsageDescription: + microphoneUsageDescription: + switchNetLibKey: + switchSocketMemoryPoolSize: 6144 + switchSocketAllocatorPoolSize: 128 + switchSocketConcurrencyLimit: 14 + switchScreenResolutionBehavior: 2 + switchUseCPUProfiler: 0 + switchApplicationID: 0x01004b9000490000 + switchNSODependencies: + switchTitleNames_0: + switchTitleNames_1: + switchTitleNames_2: + switchTitleNames_3: + switchTitleNames_4: + switchTitleNames_5: + switchTitleNames_6: + switchTitleNames_7: + switchTitleNames_8: + switchTitleNames_9: + switchTitleNames_10: + switchTitleNames_11: + switchTitleNames_12: + switchTitleNames_13: + switchTitleNames_14: + switchPublisherNames_0: + switchPublisherNames_1: + switchPublisherNames_2: + switchPublisherNames_3: + switchPublisherNames_4: + switchPublisherNames_5: + switchPublisherNames_6: + switchPublisherNames_7: + switchPublisherNames_8: + switchPublisherNames_9: + switchPublisherNames_10: + switchPublisherNames_11: + switchPublisherNames_12: + switchPublisherNames_13: + switchPublisherNames_14: + switchIcons_0: {fileID: 0} + switchIcons_1: {fileID: 0} + switchIcons_2: {fileID: 0} + switchIcons_3: {fileID: 0} + switchIcons_4: {fileID: 0} + switchIcons_5: {fileID: 0} + switchIcons_6: {fileID: 0} + switchIcons_7: {fileID: 0} + switchIcons_8: {fileID: 0} + switchIcons_9: {fileID: 0} + switchIcons_10: {fileID: 0} + switchIcons_11: {fileID: 0} + switchIcons_12: {fileID: 0} + switchIcons_13: {fileID: 0} + switchIcons_14: {fileID: 0} + switchSmallIcons_0: {fileID: 0} + switchSmallIcons_1: {fileID: 0} + switchSmallIcons_2: {fileID: 0} + switchSmallIcons_3: {fileID: 0} + switchSmallIcons_4: {fileID: 0} + switchSmallIcons_5: {fileID: 0} + switchSmallIcons_6: {fileID: 0} + switchSmallIcons_7: {fileID: 0} + switchSmallIcons_8: {fileID: 0} + switchSmallIcons_9: {fileID: 0} + switchSmallIcons_10: {fileID: 0} + switchSmallIcons_11: {fileID: 0} + switchSmallIcons_12: {fileID: 0} + switchSmallIcons_13: {fileID: 0} + switchSmallIcons_14: {fileID: 0} + switchManualHTML: + switchAccessibleURLs: + switchLegalInformation: + switchMainThreadStackSize: 1048576 + switchPresenceGroupId: + switchLogoHandling: 0 + switchReleaseVersion: 0 + switchDisplayVersion: 1.0.0 + switchStartupUserAccount: 0 + switchTouchScreenUsage: 0 + switchSupportedLanguagesMask: 0 + switchLogoType: 0 + switchApplicationErrorCodeCategory: + switchUserAccountSaveDataSize: 0 + switchUserAccountSaveDataJournalSize: 0 + switchApplicationAttribute: 0 + switchCardSpecSize: -1 + switchCardSpecClock: -1 + switchRatingsMask: 0 + switchRatingsInt_0: 0 + switchRatingsInt_1: 0 + switchRatingsInt_2: 0 + switchRatingsInt_3: 0 + switchRatingsInt_4: 0 + switchRatingsInt_5: 0 + switchRatingsInt_6: 0 + switchRatingsInt_7: 0 + switchRatingsInt_8: 0 + switchRatingsInt_9: 0 + switchRatingsInt_10: 0 + switchRatingsInt_11: 0 + switchLocalCommunicationIds_0: + switchLocalCommunicationIds_1: + switchLocalCommunicationIds_2: + switchLocalCommunicationIds_3: + switchLocalCommunicationIds_4: + switchLocalCommunicationIds_5: + switchLocalCommunicationIds_6: + switchLocalCommunicationIds_7: + switchParentalControl: 0 + switchAllowsScreenshot: 1 + switchAllowsVideoCapturing: 1 + switchAllowsRuntimeAddOnContentInstall: 0 + switchDataLossConfirmation: 0 + switchUserAccountLockEnabled: 0 + switchSystemResourceMemory: 16777216 + switchSupportedNpadStyles: 3 + switchNativeFsCacheSize: 32 + switchIsHoldTypeHorizontal: 0 + switchSupportedNpadCount: 8 + switchSocketConfigEnabled: 0 + switchTcpInitialSendBufferSize: 32 + switchTcpInitialReceiveBufferSize: 64 + switchTcpAutoSendBufferSizeMax: 256 + switchTcpAutoReceiveBufferSizeMax: 256 + switchUdpSendBufferSize: 9 + switchUdpReceiveBufferSize: 42 + switchSocketBufferEfficiency: 4 + switchSocketInitializeEnabled: 1 + switchNetworkInterfaceManagerInitializeEnabled: 1 + switchPlayerConnectionEnabled: 1 + ps4NPAgeRating: 12 + ps4NPTitleSecret: + ps4NPTrophyPackPath: + ps4ParentalLevel: 11 + ps4ContentID: ED1633-NPXX51362_00-0000000000000000 + ps4Category: 0 + ps4MasterVersion: 01.00 + ps4AppVersion: 01.00 + ps4AppType: 0 + ps4ParamSfxPath: + ps4VideoOutPixelFormat: 0 + ps4VideoOutInitialWidth: 1920 + ps4VideoOutBaseModeInitialWidth: 1920 + ps4VideoOutReprojectionRate: 60 + ps4PronunciationXMLPath: + ps4PronunciationSIGPath: + ps4BackgroundImagePath: + ps4StartupImagePath: + ps4StartupImagesFolder: + ps4IconImagesFolder: + ps4SaveDataImagePath: + ps4SdkOverride: + ps4BGMPath: + ps4ShareFilePath: + ps4ShareOverlayImagePath: + ps4PrivacyGuardImagePath: + ps4NPtitleDatPath: + ps4RemotePlayKeyAssignment: -1 + ps4RemotePlayKeyMappingDir: + ps4PlayTogetherPlayerCount: 0 + ps4EnterButtonAssignment: 1 + ps4ApplicationParam1: 0 + ps4ApplicationParam2: 0 + ps4ApplicationParam3: 0 + ps4ApplicationParam4: 0 + ps4DownloadDataSize: 0 + ps4GarlicHeapSize: 2048 + ps4ProGarlicHeapSize: 2560 + playerPrefsMaxSize: 32768 + ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ + ps4pnSessions: 1 + ps4pnPresence: 1 + ps4pnFriends: 1 + ps4pnGameCustomData: 1 + playerPrefsSupport: 0 + enableApplicationExit: 0 + resetTempFolder: 1 + restrictedAudioUsageRights: 0 + ps4UseResolutionFallback: 0 + ps4ReprojectionSupport: 0 + ps4UseAudio3dBackend: 0 + ps4SocialScreenEnabled: 0 + ps4ScriptOptimizationLevel: 0 + ps4Audio3dVirtualSpeakerCount: 14 + ps4attribCpuUsage: 0 + ps4PatchPkgPath: + ps4PatchLatestPkgPath: + ps4PatchChangeinfoPath: + ps4PatchDayOne: 0 + ps4attribUserManagement: 0 + ps4attribMoveSupport: 0 + ps4attrib3DSupport: 0 + ps4attribShareSupport: 0 + ps4attribExclusiveVR: 0 + ps4disableAutoHideSplash: 0 + ps4videoRecordingFeaturesUsed: 0 + ps4contentSearchFeaturesUsed: 0 + ps4attribEyeToEyeDistanceSettingVR: 0 + ps4IncludedModules: [] + monoEnv: + splashScreenBackgroundSourceLandscape: {fileID: 0} + splashScreenBackgroundSourcePortrait: {fileID: 0} + blurSplashScreenBackground: 1 + spritePackerPolicy: + webGLMemorySize: 16 + webGLExceptionSupport: 1 + webGLNameFilesAsHashes: 0 + webGLDataCaching: 1 + webGLDebugSymbols: 0 + webGLEmscriptenArgs: + webGLModulesDirectory: + webGLTemplate: APPLICATION:Default + webGLAnalyzeBuildSize: 0 + webGLUseEmbeddedResources: 0 + webGLCompressionFormat: 1 + webGLLinkerTarget: 1 + webGLThreadsSupport: 0 + webGLWasmStreaming: 0 + scriptingDefineSymbols: {} + platformArchitecture: {} + scriptingBackend: {} + il2cppCompilerConfiguration: {} + managedStrippingLevel: {} + incrementalIl2cppBuild: {} + allowUnsafeCode: 0 + additionalIl2CppArgs: + scriptingRuntimeVersion: 1 + gcIncremental: 0 + gcWBarrierValidation: 0 + apiCompatibilityLevelPerPlatform: {} + m_RenderingPath: 1 + m_MobileRenderingPath: 1 + metroPackageName: Template_3D + metroPackageVersion: + metroCertificatePath: + metroCertificatePassword: + metroCertificateSubject: + metroCertificateIssuer: + metroCertificateNotAfter: 0000000000000000 + metroApplicationDescription: Template_3D + wsaImages: {} + metroTileShortName: + metroTileShowName: 0 + metroMediumTileShowName: 0 + metroLargeTileShowName: 0 + metroWideTileShowName: 0 + metroSupportStreamingInstall: 0 + metroLastRequiredScene: 0 + metroDefaultTileSize: 1 + metroTileForegroundText: 2 + metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} + metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, + a: 1} + metroSplashScreenUseBackgroundColor: 0 + platformCapabilities: {} + metroTargetDeviceFamilies: {} + metroFTAName: + metroFTAFileTypes: [] + metroProtocolName: + XboxOneProductId: + XboxOneUpdateKey: + XboxOneSandboxId: + XboxOneContentId: + XboxOneTitleId: + XboxOneSCId: + XboxOneGameOsOverridePath: + XboxOnePackagingOverridePath: + XboxOneAppManifestOverridePath: + XboxOneVersion: 1.0.0.0 + XboxOnePackageEncryption: 0 + XboxOnePackageUpdateGranularity: 2 + XboxOneDescription: + XboxOneLanguage: + - enus + XboxOneCapability: [] + XboxOneGameRating: {} + XboxOneIsContentPackage: 0 + XboxOneEnableGPUVariability: 1 + XboxOneSockets: {} + XboxOneSplashScreen: {fileID: 0} + XboxOneAllowedProductIds: [] + XboxOnePersistentLocalStorageSize: 0 + XboxOneXTitleMemory: 8 + xboxOneScriptCompiler: 1 + XboxOneOverrideIdentityName: + vrEditorSettings: + daydream: + daydreamIconForeground: {fileID: 0} + daydreamIconBackground: {fileID: 0} + cloudServicesEnabled: + UNet: 1 + luminIcon: + m_Name: + m_ModelFolderPath: + m_PortalFolderPath: + luminCert: + m_CertPath: + m_SignPackage: 1 + luminIsChannelApp: 0 + luminVersion: + m_VersionCode: 1 + m_VersionName: + facebookSdkVersion: 7.9.4 + facebookAppId: + facebookCookies: 1 + facebookLogging: 1 + facebookStatus: 1 + facebookXfbml: 0 + facebookFrictionlessRequests: 1 + apiCompatibilityLevel: 6 + cloudProjectId: + framebufferDepthMemorylessMode: 0 + projectName: + organizationId: + cloudEnabled: 0 + enableNativePlatformBackendsForNewInputSystem: 0 + disableOldInputManagerSupport: 0 + legacyClampBlendShapeWeights: 1 diff --git a/CsprojToAsmdef/ProjectSettings/ProjectVersion.txt b/Samples/CsprojToAsmdef.Sample/ProjectSettings/ProjectVersion.txt similarity index 100% rename from CsprojToAsmdef/ProjectSettings/ProjectVersion.txt rename to Samples/CsprojToAsmdef.Sample/ProjectSettings/ProjectVersion.txt diff --git a/Samples/CsprojToAsmdef.Sample/ProjectSettings/QualitySettings.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/QualitySettings.asset new file mode 100644 index 0000000..ed26313 --- /dev/null +++ b/Samples/CsprojToAsmdef.Sample/ProjectSettings/QualitySettings.asset @@ -0,0 +1,231 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!47 &1 +QualitySettings: + m_ObjectHideFlags: 0 + serializedVersion: 5 + m_CurrentQuality: 5 + m_QualitySettings: + - serializedVersion: 2 + name: Very Low + pixelLightCount: 0 + shadows: 0 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 15 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + blendWeights: 1 + textureQuality: 1 + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 0 + lodBias: 0.3 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 4 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Low + pixelLightCount: 0 + shadows: 0 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 20 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + blendWeights: 2 + textureQuality: 0 + anisotropicTextures: 0 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 0 + lodBias: 0.4 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 16 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Medium + pixelLightCount: 1 + shadows: 1 + shadowResolution: 0 + shadowProjection: 1 + shadowCascades: 1 + shadowDistance: 20 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 0 + blendWeights: 2 + textureQuality: 0 + anisotropicTextures: 1 + antiAliasing: 0 + softParticles: 0 + softVegetation: 0 + realtimeReflectionProbes: 0 + billboardsFaceCameraPosition: 0 + vSyncCount: 1 + lodBias: 0.7 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 64 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: High + pixelLightCount: 2 + shadows: 2 + shadowResolution: 1 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 40 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + blendWeights: 2 + textureQuality: 0 + anisotropicTextures: 1 + antiAliasing: 0 + softParticles: 0 + softVegetation: 1 + realtimeReflectionProbes: 1 + billboardsFaceCameraPosition: 1 + vSyncCount: 1 + lodBias: 1 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 256 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Very High + pixelLightCount: 3 + shadows: 2 + shadowResolution: 2 + shadowProjection: 1 + shadowCascades: 2 + shadowDistance: 70 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + blendWeights: 4 + textureQuality: 0 + anisotropicTextures: 2 + antiAliasing: 2 + softParticles: 1 + softVegetation: 1 + realtimeReflectionProbes: 1 + billboardsFaceCameraPosition: 1 + vSyncCount: 1 + lodBias: 1.5 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 1024 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + excludedTargetPlatforms: [] + - serializedVersion: 2 + name: Ultra + pixelLightCount: 4 + shadows: 2 + shadowResolution: 2 + shadowProjection: 1 + shadowCascades: 4 + shadowDistance: 150 + shadowNearPlaneOffset: 3 + shadowCascade2Split: 0.33333334 + shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} + shadowmaskMode: 1 + blendWeights: 4 + textureQuality: 0 + anisotropicTextures: 2 + antiAliasing: 2 + softParticles: 1 + softVegetation: 1 + realtimeReflectionProbes: 1 + billboardsFaceCameraPosition: 1 + vSyncCount: 1 + lodBias: 2 + maximumLODLevel: 0 + streamingMipmapsActive: 0 + streamingMipmapsAddAllCameras: 1 + streamingMipmapsMemoryBudget: 512 + streamingMipmapsRenderersPerFrame: 512 + streamingMipmapsMaxLevelReduction: 2 + streamingMipmapsMaxFileIORequests: 1024 + particleRaycastBudget: 4096 + asyncUploadTimeSlice: 2 + asyncUploadBufferSize: 16 + asyncUploadPersistentBuffer: 1 + resolutionScalingFixedDPIFactor: 1 + excludedTargetPlatforms: [] + m_PerPlatformDefaultQuality: + Android: 2 + Lumin: 5 + Nintendo 3DS: 5 + Nintendo Switch: 5 + PS4: 5 + PSP2: 2 + Standalone: 5 + WebGL: 3 + Windows Store Apps: 5 + XboxOne: 5 + iPhone: 2 + tvOS: 2 diff --git a/CsprojToAsmdef/ProjectSettings/TagManager.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/TagManager.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/TagManager.asset rename to Samples/CsprojToAsmdef.Sample/ProjectSettings/TagManager.asset diff --git a/CsprojToAsmdef/ProjectSettings/TimeManager.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/TimeManager.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/TimeManager.asset rename to Samples/CsprojToAsmdef.Sample/ProjectSettings/TimeManager.asset diff --git a/CsprojToAsmdef/ProjectSettings/UnityConnectSettings.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/UnityConnectSettings.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/UnityConnectSettings.asset rename to Samples/CsprojToAsmdef.Sample/ProjectSettings/UnityConnectSettings.asset diff --git a/Samples/CsprojToAsmdef.Sample/ProjectSettings/VFXManager.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/VFXManager.asset new file mode 100644 index 0000000..6e0eaca --- /dev/null +++ b/Samples/CsprojToAsmdef.Sample/ProjectSettings/VFXManager.asset @@ -0,0 +1,11 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!937362698 &1 +VFXManager: + m_ObjectHideFlags: 0 + m_IndirectShader: {fileID: 0} + m_CopyBufferShader: {fileID: 0} + m_SortShader: {fileID: 0} + m_RenderPipeSettingsPath: + m_FixedTimeStep: 0.016666668 + m_MaxDeltaTime: 0.05 diff --git a/CsprojToAsmdef/ProjectSettings/XRSettings.asset b/Samples/CsprojToAsmdef.Sample/ProjectSettings/XRSettings.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/XRSettings.asset rename to Samples/CsprojToAsmdef.Sample/ProjectSettings/XRSettings.asset diff --git a/ExternalDependency/CustomCalculator.cs b/Samples/ExternalDependency/CustomCalculator.cs similarity index 100% rename from ExternalDependency/CustomCalculator.cs rename to Samples/ExternalDependency/CustomCalculator.cs diff --git a/ExternalDependency/ExternalDependency.csproj b/Samples/ExternalDependency/ExternalDependency.csproj similarity index 100% rename from ExternalDependency/ExternalDependency.csproj rename to Samples/ExternalDependency/ExternalDependency.csproj diff --git a/OtherExternalDependency/Addition.cs b/Samples/OtherExternalDependency/Addition.cs similarity index 100% rename from OtherExternalDependency/Addition.cs rename to Samples/OtherExternalDependency/Addition.cs diff --git a/OtherExternalDependency/AdditionValidator.cs b/Samples/OtherExternalDependency/AdditionValidator.cs similarity index 100% rename from OtherExternalDependency/AdditionValidator.cs rename to Samples/OtherExternalDependency/AdditionValidator.cs diff --git a/OtherExternalDependency/OtherExternalDependency.csproj b/Samples/OtherExternalDependency/OtherExternalDependency.csproj similarity index 100% rename from OtherExternalDependency/OtherExternalDependency.csproj rename to Samples/OtherExternalDependency/OtherExternalDependency.csproj diff --git a/CsprojToAsmdef.Cli/CsprojToAsmdef.Cli.csproj b/Sources/CsprojToAsmdef.Cli/CsprojToAsmdef.Cli.csproj similarity index 100% rename from CsprojToAsmdef.Cli/CsprojToAsmdef.Cli.csproj rename to Sources/CsprojToAsmdef.Cli/CsprojToAsmdef.Cli.csproj diff --git a/CsprojToAsmdef.Cli/Domain/Asmdef.cs b/Sources/CsprojToAsmdef.Cli/Domain/Asmdef.cs similarity index 100% rename from CsprojToAsmdef.Cli/Domain/Asmdef.cs rename to Sources/CsprojToAsmdef.Cli/Domain/Asmdef.cs diff --git a/CsprojToAsmdef.Cli/Domain/Services/DotNet/DotNetTooling.cs b/Sources/CsprojToAsmdef.Cli/Domain/Services/DotNet/DotNetTooling.cs similarity index 100% rename from CsprojToAsmdef.Cli/Domain/Services/DotNet/DotNetTooling.cs rename to Sources/CsprojToAsmdef.Cli/Domain/Services/DotNet/DotNetTooling.cs diff --git a/CsprojToAsmdef.Cli/Domain/Services/DotNet/IDotNetTooling.cs b/Sources/CsprojToAsmdef.Cli/Domain/Services/DotNet/IDotNetTooling.cs similarity index 100% rename from CsprojToAsmdef.Cli/Domain/Services/DotNet/IDotNetTooling.cs rename to Sources/CsprojToAsmdef.Cli/Domain/Services/DotNet/IDotNetTooling.cs diff --git a/CsprojToAsmdef.Cli/Extensions/EnumerableExtensions.cs b/Sources/CsprojToAsmdef.Cli/Extensions/EnumerableExtensions.cs similarity index 100% rename from CsprojToAsmdef.Cli/Extensions/EnumerableExtensions.cs rename to Sources/CsprojToAsmdef.Cli/Extensions/EnumerableExtensions.cs diff --git a/CsprojToAsmdef.Cli/FixUpProject.cs b/Sources/CsprojToAsmdef.Cli/FixUpProject.cs similarity index 100% rename from CsprojToAsmdef.Cli/FixUpProject.cs rename to Sources/CsprojToAsmdef.Cli/FixUpProject.cs diff --git a/CsprojToAsmdef.Cli/Program.cs b/Sources/CsprojToAsmdef.Cli/Program.cs similarity index 100% rename from CsprojToAsmdef.Cli/Program.cs rename to Sources/CsprojToAsmdef.Cli/Program.cs diff --git a/Sources/CsprojToAsmdef/.gitignore b/Sources/CsprojToAsmdef/.gitignore new file mode 100644 index 0000000..7347fe6 --- /dev/null +++ b/Sources/CsprojToAsmdef/.gitignore @@ -0,0 +1,77 @@ + +# Created by https://www.toptal.com/developers/gitignore/api/unity +# Edit at https://www.toptal.com/developers/gitignore?templates=unity + +### Unity ### +# This .gitignore file should be placed at the root of your Unity project directory +# +# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore +/[Ll]ibrary/ +/[Tt]emp/ +/[Oo]bj/ +/[Bb]uild/ +/[Bb]uilds/ +/[Ll]ogs/ +/[Uu]ser[Ss]ettings/ + +# MemoryCaptures can get excessive in size. +# They also could contain extremely sensitive data +/[Mm]emoryCaptures/ + +# Asset meta data should only be ignored when the corresponding asset is also ignored +!/[Aa]ssets/**/*.meta + +# Uncomment this line if you wish to ignore the asset store tools plugin +# /[Aa]ssets/AssetStoreTools* + +# Autogenerated Jetbrains Rider plugin +/[Aa]ssets/Plugins/Editor/JetBrains* + +# Visual Studio cache directory +.vs/ + +# Gradle cache directory +.gradle/ + +# Autogenerated VS/MD/Consulo solution and project files +ExportedObj/ +.consulo/ +*.csproj +*.unityproj +*.sln +*.suo +*.tmp +*.user +*.userprefs +*.pidb +*.booproj +*.svd +*.pdb +*.mdb +*.opendb +*.VC.db + +# Unity3D generated meta files +*.pidb.meta +*.pdb.meta +*.mdb.meta + +# Unity3D generated file on crash reports +sysinfo.txt + +# Builds +*.apk +*.unitypackage + +# Crashlytics generated file +crashlytics-build.properties + +# Autogenerated files +InitTestScene*.unity.meta +InitTestScene*.unity + + +# End of https://www.toptal.com/developers/gitignore/api/unity + +![Pp]ackages/* +!*.rsp diff --git a/Sources/CsprojToAsmdef/.vsconfig b/Sources/CsprojToAsmdef/.vsconfig new file mode 100644 index 0000000..aade28f --- /dev/null +++ b/Sources/CsprojToAsmdef/.vsconfig @@ -0,0 +1,6 @@ +{ + "version": "1.0", + "components": [ + "Microsoft.VisualStudio.Workload.ManagedGame" + ] +} diff --git a/Sources/CsprojToAsmdef/Assets/.gitignore b/Sources/CsprojToAsmdef/Assets/.gitignore new file mode 100644 index 0000000..26887a6 --- /dev/null +++ b/Sources/CsprojToAsmdef/Assets/.gitignore @@ -0,0 +1 @@ +!*.csproj diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef.meta b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef.meta similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef.meta rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef.meta diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/BuildTools.cs b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/BuildTools.cs similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/BuildTools.cs rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/BuildTools.cs diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/BuildTools.cs.meta b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/BuildTools.cs.meta similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/BuildTools.cs.meta rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/BuildTools.cs.meta diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/CHANGELOG.md b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/CHANGELOG.md similarity index 93% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/CHANGELOG.md rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/CHANGELOG.md index 03dd5a4..84153ee 100644 --- a/CsprojToAsmdef/Assets/CsprojToAsmdef/CHANGELOG.md +++ b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.6.0 +- Bumping version because of project structure change, otherwise no changes + # 0.5.0 - Automatically set Unity version when the editor loads, and when creating the props file diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/CHANGELOG.md.meta b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/CHANGELOG.md.meta similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/CHANGELOG.md.meta rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/CHANGELOG.md.meta diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.asmdef b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.asmdef similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.asmdef rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.asmdef diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.asmdef.meta b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.asmdef.meta similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.asmdef.meta rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.asmdef.meta diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.csproj b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.csproj similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.csproj rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.csproj diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.csproj.meta b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.csproj.meta similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.csproj.meta rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/CsprojToAsmdef.csproj.meta diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/Dotnet.cs b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/Dotnet.cs similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/Dotnet.cs rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/Dotnet.cs diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/Dotnet.cs.meta b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/Dotnet.cs.meta similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/Dotnet.cs.meta rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/Dotnet.cs.meta diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/Extensions.meta b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/Extensions.meta similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/Extensions.meta rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/Extensions.meta diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/Extensions/DocumentExtensions.cs b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/Extensions/DocumentExtensions.cs similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/Extensions/DocumentExtensions.cs rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/Extensions/DocumentExtensions.cs diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/Extensions/DocumentExtensions.cs.meta b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/Extensions/DocumentExtensions.cs.meta similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/Extensions/DocumentExtensions.cs.meta rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/Extensions/DocumentExtensions.cs.meta diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/MenuUI.cs.meta b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/MenuUI.cs.meta similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/MenuUI.cs.meta rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/MenuUI.cs.meta diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/MenuUi.cs b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/MenuUi.cs similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/MenuUi.cs rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/MenuUi.cs diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/MethodLocker.cs b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/MethodLocker.cs similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/MethodLocker.cs rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/MethodLocker.cs diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/MethodLocker.cs.meta b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/MethodLocker.cs.meta similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/MethodLocker.cs.meta rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/MethodLocker.cs.meta diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/ProjectInitializer.cs b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/ProjectInitializer.cs similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/ProjectInitializer.cs rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/ProjectInitializer.cs diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/ProjectInitializer.cs.meta b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/ProjectInitializer.cs.meta similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/ProjectInitializer.cs.meta rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/ProjectInitializer.cs.meta diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/package.json b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/package.json similarity index 91% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/package.json rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/package.json index 5404308..6327a8a 100644 --- a/CsprojToAsmdef/Assets/CsprojToAsmdef/package.json +++ b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/package.json @@ -1,6 +1,6 @@ { "name": "com.kuraiandras.csprojtoasmdef", - "version": "0.5.0", + "version": "0.6.0", "displayName": "Csproj To Asmdef", "unity": "2019.2", "author": { diff --git a/CsprojToAsmdef/Assets/CsprojToAsmdef/package.json.meta b/Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/package.json.meta similarity index 100% rename from CsprojToAsmdef/Assets/CsprojToAsmdef/package.json.meta rename to Sources/CsprojToAsmdef/Assets/CsprojToAsmdef/package.json.meta diff --git a/CsprojToAsmdef/Assets/Directory.Build.props b/Sources/CsprojToAsmdef/Assets/Directory.Build.props similarity index 100% rename from CsprojToAsmdef/Assets/Directory.Build.props rename to Sources/CsprojToAsmdef/Assets/Directory.Build.props diff --git a/CsprojToAsmdef/Assets/Directory.Build.props.meta b/Sources/CsprojToAsmdef/Assets/Directory.Build.props.meta similarity index 100% rename from CsprojToAsmdef/Assets/Directory.Build.props.meta rename to Sources/CsprojToAsmdef/Assets/Directory.Build.props.meta diff --git a/Sources/CsprojToAsmdef/Assets/Directory.Build.targets b/Sources/CsprojToAsmdef/Assets/Directory.Build.targets new file mode 100644 index 0000000..bd2a5c9 --- /dev/null +++ b/Sources/CsprojToAsmdef/Assets/Directory.Build.targets @@ -0,0 +1,15 @@ + + + + + + + + asmdef-tool + + + + + + + diff --git a/Sources/CsprojToAsmdef/Assets/Directory.Build.targets.meta b/Sources/CsprojToAsmdef/Assets/Directory.Build.targets.meta new file mode 100644 index 0000000..5133aca --- /dev/null +++ b/Sources/CsprojToAsmdef/Assets/Directory.Build.targets.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f171da620a8b18944bdefc2a99ca5df1 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Sources/CsprojToAsmdef/Assets/Sample.unity b/Sources/CsprojToAsmdef/Assets/Sample.unity new file mode 100644 index 0000000..a20d65f --- /dev/null +++ b/Sources/CsprojToAsmdef/Assets/Sample.unity @@ -0,0 +1,296 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 1 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 1 + m_LightmapEditorSettings: + serializedVersion: 12 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_ExtractAmbientOcclusion: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 512 + m_PVRBounces: 2 + m_PVREnvironmentSampleCount: 256 + m_PVREnvironmentReferencePointCount: 2048 + m_PVRFilteringMode: 1 + m_PVRDenoiserTypeDirect: 1 + m_PVRDenoiserTypeIndirect: 1 + m_PVRDenoiserTypeAO: 1 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVREnvironmentMIS: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ExportTrainingData: 0 + m_TrainingDataDestination: TrainingData + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &449800490 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 449800492} + - component: {fileID: 449800491} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &449800491 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 449800490} + m_Enabled: 1 + serializedVersion: 9 + m_Type: 1 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_InnerSpotAngle: 21.80208 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &449800492 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 449800490} + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1 &1656129303 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1656129306} + - component: {fileID: 1656129305} + - component: {fileID: 1656129304} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &1656129304 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1656129303} + m_Enabled: 1 +--- !u!20 &1656129305 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1656129303} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &1656129306 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1656129303} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Sources/CsprojToAsmdef/Assets/Sample.unity.meta b/Sources/CsprojToAsmdef/Assets/Sample.unity.meta new file mode 100644 index 0000000..910084b --- /dev/null +++ b/Sources/CsprojToAsmdef/Assets/Sample.unity.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3e81eb211ad67474a88a6435cf9dc47e +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/CsprojToAsmdef/Packages/manifest.json b/Sources/CsprojToAsmdef/Packages/manifest.json similarity index 89% rename from CsprojToAsmdef/Packages/manifest.json rename to Sources/CsprojToAsmdef/Packages/manifest.json index 67094dd..00651a2 100644 --- a/CsprojToAsmdef/Packages/manifest.json +++ b/Sources/CsprojToAsmdef/Packages/manifest.json @@ -3,9 +3,7 @@ "com.unity.ide.rider": "1.0.8", "com.unity.ide.visualstudio": "1.0.11", "com.unity.ide.vscode": "1.2.3", - "com.unity.test-framework": "1.1.24", - "com.unity.textmeshpro": "2.1.4", - "com.unity.ugui": "1.0.0", + "com.unity.package-manager-ui": "2.2.0", "com.unity.modules.ai": "1.0.0", "com.unity.modules.androidjni": "1.0.0", "com.unity.modules.animation": "1.0.0", @@ -36,8 +34,7 @@ "com.unity.modules.video": "1.0.0", "com.unity.modules.vr": "1.0.0", "com.unity.modules.wind": "1.0.0", - "com.unity.modules.xr": "1.0.0", - "com.serilog.sinks.unity3d": "2.0.1" + "com.unity.modules.xr": "1.0.0" }, "scopedRegistries": [ { @@ -49,4 +46,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/CsprojToAsmdef/Packages/packages-lock.json b/Sources/CsprojToAsmdef/Packages/packages-lock.json similarity index 100% rename from CsprojToAsmdef/Packages/packages-lock.json rename to Sources/CsprojToAsmdef/Packages/packages-lock.json diff --git a/Sources/CsprojToAsmdef/ProjectSettings/AudioManager.asset b/Sources/CsprojToAsmdef/ProjectSettings/AudioManager.asset new file mode 100644 index 0000000..07ebfb0 --- /dev/null +++ b/Sources/CsprojToAsmdef/ProjectSettings/AudioManager.asset @@ -0,0 +1,19 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!11 &1 +AudioManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Volume: 1 + Rolloff Scale: 1 + Doppler Factor: 1 + Default Speaker Mode: 2 + m_SampleRate: 0 + m_DSPBufferSize: 1024 + m_VirtualVoiceCount: 512 + m_RealVoiceCount: 32 + m_SpatializerPlugin: + m_AmbisonicDecoderPlugin: + m_DisableAudio: 0 + m_VirtualizeEffects: 1 + m_RequestedDSPBufferSize: 1024 diff --git a/Sources/CsprojToAsmdef/ProjectSettings/ClusterInputManager.asset b/Sources/CsprojToAsmdef/ProjectSettings/ClusterInputManager.asset new file mode 100644 index 0000000..e7886b2 --- /dev/null +++ b/Sources/CsprojToAsmdef/ProjectSettings/ClusterInputManager.asset @@ -0,0 +1,6 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!236 &1 +ClusterInputManager: + m_ObjectHideFlags: 0 + m_Inputs: [] diff --git a/Sources/CsprojToAsmdef/ProjectSettings/DynamicsManager.asset b/Sources/CsprojToAsmdef/ProjectSettings/DynamicsManager.asset new file mode 100644 index 0000000..cdc1f3e --- /dev/null +++ b/Sources/CsprojToAsmdef/ProjectSettings/DynamicsManager.asset @@ -0,0 +1,34 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!55 &1 +PhysicsManager: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_Gravity: {x: 0, y: -9.81, z: 0} + m_DefaultMaterial: {fileID: 0} + m_BounceThreshold: 2 + m_SleepThreshold: 0.005 + m_DefaultContactOffset: 0.01 + m_DefaultSolverIterations: 6 + m_DefaultSolverVelocityIterations: 1 + m_QueriesHitBackfaces: 0 + m_QueriesHitTriggers: 1 + m_EnableAdaptiveForce: 0 + m_ClothInterCollisionDistance: 0 + m_ClothInterCollisionStiffness: 0 + m_ContactsGeneration: 1 + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff + m_AutoSimulation: 1 + m_AutoSyncTransforms: 0 + m_ReuseCollisionCallbacks: 1 + m_ClothInterCollisionSettingsToggle: 0 + m_ContactPairsMode: 0 + m_BroadphaseType: 0 + m_WorldBounds: + m_Center: {x: 0, y: 0, z: 0} + m_Extent: {x: 250, y: 250, z: 250} + m_WorldSubdivisions: 8 + m_FrictionType: 0 + m_EnableEnhancedDeterminism: 0 + m_EnableUnifiedHeightmaps: 1 + m_DefaultMaxAngluarSpeed: 7 diff --git a/Sources/CsprojToAsmdef/ProjectSettings/EditorBuildSettings.asset b/Sources/CsprojToAsmdef/ProjectSettings/EditorBuildSettings.asset new file mode 100644 index 0000000..0147887 --- /dev/null +++ b/Sources/CsprojToAsmdef/ProjectSettings/EditorBuildSettings.asset @@ -0,0 +1,8 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1045 &1 +EditorBuildSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Scenes: [] + m_configObjects: {} diff --git a/CsprojToAsmdef/ProjectSettings/EditorSettings.asset b/Sources/CsprojToAsmdef/ProjectSettings/EditorSettings.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/EditorSettings.asset rename to Sources/CsprojToAsmdef/ProjectSettings/EditorSettings.asset diff --git a/CsprojToAsmdef/ProjectSettings/GraphicsSettings.asset b/Sources/CsprojToAsmdef/ProjectSettings/GraphicsSettings.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/GraphicsSettings.asset rename to Sources/CsprojToAsmdef/ProjectSettings/GraphicsSettings.asset diff --git a/Sources/CsprojToAsmdef/ProjectSettings/InputManager.asset b/Sources/CsprojToAsmdef/ProjectSettings/InputManager.asset new file mode 100644 index 0000000..17c8f53 --- /dev/null +++ b/Sources/CsprojToAsmdef/ProjectSettings/InputManager.asset @@ -0,0 +1,295 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!13 &1 +InputManager: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Axes: + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: left + positiveButton: right + altNegativeButton: a + altPositiveButton: d + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: down + positiveButton: up + altNegativeButton: s + altPositiveButton: w + gravity: 3 + dead: 0.001 + sensitivity: 3 + snap: 1 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left ctrl + altNegativeButton: + altPositiveButton: mouse 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left alt + altNegativeButton: + altPositiveButton: mouse 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: left shift + altNegativeButton: + altPositiveButton: mouse 2 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: space + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse X + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse Y + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Mouse ScrollWheel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0 + sensitivity: 0.1 + snap: 0 + invert: 0 + type: 1 + axis: 2 + joyNum: 0 + - serializedVersion: 3 + m_Name: Horizontal + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 0 + type: 2 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Vertical + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: + altNegativeButton: + altPositiveButton: + gravity: 0 + dead: 0.19 + sensitivity: 1 + snap: 0 + invert: 1 + type: 2 + axis: 1 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire1 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 0 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire2 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 1 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Fire3 + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 2 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Jump + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: joystick button 3 + altNegativeButton: + altPositiveButton: + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: return + altNegativeButton: + altPositiveButton: joystick button 0 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Submit + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: enter + altNegativeButton: + altPositiveButton: space + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 + - serializedVersion: 3 + m_Name: Cancel + descriptiveName: + descriptiveNegativeName: + negativeButton: + positiveButton: escape + altNegativeButton: + altPositiveButton: joystick button 1 + gravity: 1000 + dead: 0.001 + sensitivity: 1000 + snap: 0 + invert: 0 + type: 0 + axis: 0 + joyNum: 0 diff --git a/Sources/CsprojToAsmdef/ProjectSettings/NavMeshAreas.asset b/Sources/CsprojToAsmdef/ProjectSettings/NavMeshAreas.asset new file mode 100644 index 0000000..3b0b7c3 --- /dev/null +++ b/Sources/CsprojToAsmdef/ProjectSettings/NavMeshAreas.asset @@ -0,0 +1,91 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!126 &1 +NavMeshProjectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + areas: + - name: Walkable + cost: 1 + - name: Not Walkable + cost: 1 + - name: Jump + cost: 2 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + - name: + cost: 1 + m_LastAgentTypeID: -887442657 + m_Settings: + - serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.75 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_SettingNames: + - Humanoid diff --git a/CsprojToAsmdef/ProjectSettings/PackageManagerSettings.asset b/Sources/CsprojToAsmdef/ProjectSettings/PackageManagerSettings.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/PackageManagerSettings.asset rename to Sources/CsprojToAsmdef/ProjectSettings/PackageManagerSettings.asset diff --git a/Sources/CsprojToAsmdef/ProjectSettings/Physics2DSettings.asset b/Sources/CsprojToAsmdef/ProjectSettings/Physics2DSettings.asset new file mode 100644 index 0000000..47880b1 --- /dev/null +++ b/Sources/CsprojToAsmdef/ProjectSettings/Physics2DSettings.asset @@ -0,0 +1,56 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!19 &1 +Physics2DSettings: + m_ObjectHideFlags: 0 + serializedVersion: 4 + m_Gravity: {x: 0, y: -9.81} + m_DefaultMaterial: {fileID: 0} + m_VelocityIterations: 8 + m_PositionIterations: 3 + m_VelocityThreshold: 1 + m_MaxLinearCorrection: 0.2 + m_MaxAngularCorrection: 8 + m_MaxTranslationSpeed: 100 + m_MaxRotationSpeed: 360 + m_BaumgarteScale: 0.2 + m_BaumgarteTimeOfImpactScale: 0.75 + m_TimeToSleep: 0.5 + m_LinearSleepTolerance: 0.01 + m_AngularSleepTolerance: 2 + m_DefaultContactOffset: 0.01 + m_JobOptions: + serializedVersion: 2 + useMultithreading: 0 + useConsistencySorting: 0 + m_InterpolationPosesPerJob: 100 + m_NewContactsPerJob: 30 + m_CollideContactsPerJob: 100 + m_ClearFlagsPerJob: 200 + m_ClearBodyForcesPerJob: 200 + m_SyncDiscreteFixturesPerJob: 50 + m_SyncContinuousFixturesPerJob: 50 + m_FindNearestContactsPerJob: 100 + m_UpdateTriggerContactsPerJob: 100 + m_IslandSolverCostThreshold: 100 + m_IslandSolverBodyCostScale: 1 + m_IslandSolverContactCostScale: 10 + m_IslandSolverJointCostScale: 10 + m_IslandSolverBodiesPerJob: 50 + m_IslandSolverContactsPerJob: 50 + m_AutoSimulation: 1 + m_QueriesHitTriggers: 1 + m_QueriesStartInColliders: 1 + m_CallbacksOnDisable: 1 + m_ReuseCollisionCallbacks: 1 + m_AutoSyncTransforms: 0 + m_AlwaysShowColliders: 0 + m_ShowColliderSleep: 1 + m_ShowColliderContacts: 0 + m_ShowColliderAABB: 0 + m_ContactArrowScale: 0.2 + m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} + m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} + m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} + m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} + m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff diff --git a/CsprojToAsmdef/ProjectSettings/PresetManager.asset b/Sources/CsprojToAsmdef/ProjectSettings/PresetManager.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/PresetManager.asset rename to Sources/CsprojToAsmdef/ProjectSettings/PresetManager.asset diff --git a/CsprojToAsmdef/ProjectSettings/ProjectSettings.asset b/Sources/CsprojToAsmdef/ProjectSettings/ProjectSettings.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/ProjectSettings.asset rename to Sources/CsprojToAsmdef/ProjectSettings/ProjectSettings.asset diff --git a/Sources/CsprojToAsmdef/ProjectSettings/ProjectVersion.txt b/Sources/CsprojToAsmdef/ProjectSettings/ProjectVersion.txt new file mode 100644 index 0000000..7e64146 --- /dev/null +++ b/Sources/CsprojToAsmdef/ProjectSettings/ProjectVersion.txt @@ -0,0 +1,2 @@ +m_EditorVersion: 2019.2.0f1 +m_EditorVersionWithRevision: 2019.2.0f1 (20c1667945cf) diff --git a/CsprojToAsmdef/ProjectSettings/QualitySettings.asset b/Sources/CsprojToAsmdef/ProjectSettings/QualitySettings.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/QualitySettings.asset rename to Sources/CsprojToAsmdef/ProjectSettings/QualitySettings.asset diff --git a/Sources/CsprojToAsmdef/ProjectSettings/TagManager.asset b/Sources/CsprojToAsmdef/ProjectSettings/TagManager.asset new file mode 100644 index 0000000..1c92a78 --- /dev/null +++ b/Sources/CsprojToAsmdef/ProjectSettings/TagManager.asset @@ -0,0 +1,43 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!78 &1 +TagManager: + serializedVersion: 2 + tags: [] + layers: + - Default + - TransparentFX + - Ignore Raycast + - + - Water + - UI + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + - + m_SortingLayers: + - name: Default + uniqueID: 0 + locked: 0 diff --git a/Sources/CsprojToAsmdef/ProjectSettings/TimeManager.asset b/Sources/CsprojToAsmdef/ProjectSettings/TimeManager.asset new file mode 100644 index 0000000..558a017 --- /dev/null +++ b/Sources/CsprojToAsmdef/ProjectSettings/TimeManager.asset @@ -0,0 +1,9 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!5 &1 +TimeManager: + m_ObjectHideFlags: 0 + Fixed Timestep: 0.02 + Maximum Allowed Timestep: 0.33333334 + m_TimeScale: 1 + Maximum Particle Timestep: 0.03 diff --git a/CsprojToAsmdef/ProjectSettings/TimelineSettings.asset b/Sources/CsprojToAsmdef/ProjectSettings/TimelineSettings.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/TimelineSettings.asset rename to Sources/CsprojToAsmdef/ProjectSettings/TimelineSettings.asset diff --git a/Sources/CsprojToAsmdef/ProjectSettings/UnityConnectSettings.asset b/Sources/CsprojToAsmdef/ProjectSettings/UnityConnectSettings.asset new file mode 100644 index 0000000..fa0b146 --- /dev/null +++ b/Sources/CsprojToAsmdef/ProjectSettings/UnityConnectSettings.asset @@ -0,0 +1,34 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!310 &1 +UnityConnectSettings: + m_ObjectHideFlags: 0 + serializedVersion: 1 + m_Enabled: 0 + m_TestMode: 0 + m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events + m_EventUrl: https://cdp.cloud.unity3d.com/v1/events + m_ConfigUrl: https://config.uca.cloud.unity3d.com + m_TestInitMode: 0 + CrashReportingSettings: + m_EventUrl: https://perf-events.cloud.unity3d.com + m_Enabled: 0 + m_LogBufferSize: 10 + m_CaptureEditorExceptions: 1 + UnityPurchasingSettings: + m_Enabled: 0 + m_TestMode: 0 + UnityAnalyticsSettings: + m_Enabled: 0 + m_TestMode: 0 + m_InitializeOnStartup: 1 + UnityAdsSettings: + m_Enabled: 0 + m_InitializeOnStartup: 1 + m_TestMode: 0 + m_IosGameId: + m_AndroidGameId: + m_GameIds: {} + m_GameId: + PerformanceReportingSettings: + m_Enabled: 0 diff --git a/CsprojToAsmdef/ProjectSettings/VFXManager.asset b/Sources/CsprojToAsmdef/ProjectSettings/VFXManager.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/VFXManager.asset rename to Sources/CsprojToAsmdef/ProjectSettings/VFXManager.asset diff --git a/CsprojToAsmdef/ProjectSettings/VersionControlSettings.asset b/Sources/CsprojToAsmdef/ProjectSettings/VersionControlSettings.asset similarity index 100% rename from CsprojToAsmdef/ProjectSettings/VersionControlSettings.asset rename to Sources/CsprojToAsmdef/ProjectSettings/VersionControlSettings.asset diff --git a/Sources/CsprojToAsmdef/ProjectSettings/XRSettings.asset b/Sources/CsprojToAsmdef/ProjectSettings/XRSettings.asset new file mode 100644 index 0000000..482590c --- /dev/null +++ b/Sources/CsprojToAsmdef/ProjectSettings/XRSettings.asset @@ -0,0 +1,10 @@ +{ + "m_SettingKeys": [ + "VR Device Disabled", + "VR Device User Alert" + ], + "m_SettingValues": [ + "False", + "False" + ] +} \ No newline at end of file diff --git a/Directory.Build.props b/Sources/Directory.Build.props similarity index 100% rename from Directory.Build.props rename to Sources/Directory.Build.props diff --git a/Tests/CsprojToAsmdef.Tests/CsprojToAsmdef.Tests.csproj b/Tests/CsprojToAsmdef.Tests/CsprojToAsmdef.Tests.csproj new file mode 100644 index 0000000..d4dc1dd --- /dev/null +++ b/Tests/CsprojToAsmdef.Tests/CsprojToAsmdef.Tests.csproj @@ -0,0 +1,22 @@ + + + + net5.0 + + false + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + diff --git a/Tests/CsprojToAsmdef.Tests/UnitTest1.cs b/Tests/CsprojToAsmdef.Tests/UnitTest1.cs new file mode 100644 index 0000000..1ea3e14 --- /dev/null +++ b/Tests/CsprojToAsmdef.Tests/UnitTest1.cs @@ -0,0 +1,12 @@ +using Xunit; + +namespace CsprojToAsmdef.Tests +{ + public class UnitTest1 + { + [Fact] + public void Test1() + { + } + } +} diff --git a/build.ps1 b/build.ps1 index db7958f..0d9ce15 100644 --- a/build.ps1 +++ b/build.ps1 @@ -13,7 +13,7 @@ $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent # CONFIGURATION ########################################################################### -$BuildProjectFile = "$PSScriptRoot\CsprojToAsmdef.Build\CsprojToAsmdef.Build.csproj" +$BuildProjectFile = "$PSScriptRoot\Build\CsprojToAsmdef.Build.csproj" $TempDirectory = "$PSScriptRoot\\.nuke\temp" $DotNetGlobalFile = "$PSScriptRoot\\global.json" diff --git a/build.sh b/build.sh index e838e0f..299aa97 100644 --- a/build.sh +++ b/build.sh @@ -9,7 +9,7 @@ SCRIPT_DIR=$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd) # CONFIGURATION ########################################################################### -BUILD_PROJECT_FILE="$SCRIPT_DIR/CsprojToAsmdef.Build/CsprojToAsmdef.Build.csproj" +BUILD_PROJECT_FILE="$SCRIPT_DIR/Build/CsprojToAsmdef.Build.csproj" TEMP_DIRECTORY="$SCRIPT_DIR//.nuke/temp" DOTNET_GLOBAL_FILE="$SCRIPT_DIR//global.json"