diff --git a/build-tools/scripts/omnisharp.json.in b/build-tools/scripts/omnisharp.json.in deleted file mode 100644 index 78928630285..00000000000 --- a/build-tools/scripts/omnisharp.json.in +++ /dev/null @@ -1,17 +0,0 @@ -{ - "msbuild": { - "loadProjectsOnDemand": true, - "Configuration": "@CONFIGURATION@" - }, - - "RenameOptions": { - "RenameInComments": false, - "RenameOverloads": true, - "RenameInStrings": false - }, - - "sdk": { - "IncludePreleases": true, - "Path": "@DOTNET_SDK_PATH@" - } -} diff --git a/build-tools/xaprepare/xaprepare/Steps/Step_GenerateFiles.cs b/build-tools/xaprepare/xaprepare/Steps/Step_GenerateFiles.cs index d3671362bc3..789268275d1 100644 --- a/build-tools/xaprepare/xaprepare/Steps/Step_GenerateFiles.cs +++ b/build-tools/xaprepare/xaprepare/Steps/Step_GenerateFiles.cs @@ -68,7 +68,6 @@ protected override async Task Execute (Context context) Get_Cmake_Presets (context), Get_Ndk_projitems (context), Get_XABuildConfig_cs (context), - Get_Omnisharp_Json (context), }; } } @@ -255,22 +254,6 @@ GeneratedFile Get_Ndk_projitems (Context context) ); } - public GeneratedFile Get_Omnisharp_Json (Context context) - { - const string OutputFileName = "omnisharp.json"; - - var replacements = new Dictionary (StringComparer.Ordinal) { - { "@CONFIGURATION@", context.Configuration }, - { "@DOTNET_SDK_PATH@", Path.Combine (Configurables.Paths.DotNetPreviewPath, "sdk", context.Properties.GetRequiredValue (KnownProperties.MicrosoftDotnetSdkInternalPackageVersion)) }, - }; - - return new GeneratedPlaceholdersFile ( - replacements, - Path.Combine (Configurables.Paths.BuildToolsScriptsDir, $"{OutputFileName}.in"), - Path.Combine (BuildPaths.XamarinAndroidSourceRoot, OutputFileName) - ); - } - public GeneratedFile Get_SourceLink_Json (Context context) { if (gitSubmodules == null || xaCommit == null) {