forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Search SDK: Fixing build issue caused by .NET Core RTM upgrade (#2150)
The build issue in Search.Tests went uncaught for a long time because it was not being included in the command-line build. This was due to the behavior of the custom FilterOutAutoRestLibraries build task, which expects a 1-1 correspondence of AutoRest libraries to test projects. To fix this, we have (finally) split our very-unfinished preview Management library into its own project, Microsoft.Azure.Management.Search.
- Loading branch information
1 parent
5893d4c
commit 8072b29
Showing
33 changed files
with
139 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
21 changes: 21 additions & 0 deletions
21
src/Search/Microsoft.Azure.Management.Search/Microsoft.Azure.Management.Search.xproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">14.0</VisualStudioVersion> | ||
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath> | ||
</PropertyGroup> | ||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.Props" Condition="'$(VSToolsPath)' != ''" /> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>4E616081-9A63-4778-B1D3-4CF35C5A5763</ProjectGuid> | ||
<RootNamespace>Microsoft.Azure.Management.Search</RootNamespace> | ||
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)'=='' ">.\obj</BaseIntermediateOutputPath> | ||
<OutputPath Condition="'$(OutputPath)'=='' ">.\bin\</OutputPath> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
<Import Project="$(VSToolsPath)\DotNet\Microsoft.DotNet.targets" Condition="'$(VSToolsPath)' != ''" /> | ||
</Project> |
20 changes: 20 additions & 0 deletions
20
src/Search/Microsoft.Azure.Management.Search/Properties/AssemblyInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
|
||
using System.Reflection; | ||
using System.Resources; | ||
|
||
[assembly: AssemblyTitle("Microsoft Azure Search Management Library")] | ||
[assembly: AssemblyDescription("Makes it easy to manage Azure Search services from a .NET application.")] | ||
|
||
[assembly: AssemblyVersion("0.9.0.0")] | ||
[assembly: AssemblyFileVersion("0.9.0.0")] | ||
|
||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("Microsoft")] | ||
[assembly: AssemblyProduct("Microsoft Azure .NET SDK")] | ||
[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
[assembly: NeutralResourcesLanguage("en")] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
"version": "0.9.0-preview", | ||
"title": "Microsoft Azure Search Management Library", | ||
"description": "Makes it easy to manage Azure Search services from a .NET application.", | ||
"authors": [ "Microsoft" ], | ||
|
||
"packOptions": { | ||
"summary": "Class library for managing Azure Search services.", | ||
"projectUrl": "https://github.com/Azure/azure-sdk-for-net", | ||
"licenseUrl": "https://raw.githubusercontent.com/Microsoft/dotnet/master/LICENSE", | ||
"iconUrl": "http://go.microsoft.com/fwlink/?LinkID=288890", | ||
"tags": [ "Microsoft Azure Search", "Microsoft Azure Search Management", "REST HTTP client", "search", "azureofficial", "windowsazureofficial" ], | ||
"requireLicenseAcceptance": true, | ||
"releaseNotes": "This is a preview release of the Azure Search Management SDK for .NET, based on version 2015-02-28 of the Azure Search Management REST API.", | ||
}, | ||
|
||
"buildOptions": { | ||
"delaySign": true, | ||
"publicSign": false, | ||
"keyFile": "../../../tools/MSSharedLibKey.snk" | ||
}, | ||
|
||
"frameworks": { | ||
"net45": { | ||
"frameworkAssemblies": { | ||
"System.Collections": "", | ||
"System.Linq.Expressions": "", | ||
"System.Runtime": "", | ||
"System.Runtime.Serialization": "", | ||
"System.Threading.Tasks": "", | ||
}, | ||
"dependencies": { | ||
"Microsoft.Rest.ClientRuntime.Azure": "[3.1.0,4.0.0)" | ||
} | ||
}, | ||
"netstandard1.5": { | ||
"buildOptions": { "define": [ "PORTABLE" ] }, | ||
"imports": ["dnxcore50"], | ||
"dependencies": { | ||
"Microsoft.NETCore.Platforms": "1.0.1", | ||
"System.Collections": "4.0.11", | ||
"System.Collections.Concurrent": "4.0.12", | ||
"System.Diagnostics.Debug": "4.0.11", | ||
"System.Diagnostics.Tools": "4.0.1", | ||
"System.Diagnostics.Tracing": "4.1.0", | ||
"System.Globalization": "4.0.11", | ||
"System.IO": "4.1.0", | ||
"System.IO.Compression": "4.1.0", | ||
"System.Linq": "4.1.0", | ||
"System.Net.Http": "4.1.0", | ||
"System.Net.Primitives": "4.0.11", | ||
"System.ObjectModel": "4.0.12", | ||
"System.Reflection": "4.1.0", | ||
"System.Reflection.Extensions": "4.0.1", | ||
"System.Reflection.Primitives": "4.0.1", | ||
"System.Resources.ResourceManager": "4.0.1", | ||
"System.Runtime": "4.1.0", | ||
"System.Runtime.Extensions": "4.1.0", | ||
"System.Runtime.InteropServices": "4.1.0", | ||
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0", | ||
"System.Runtime.Numerics": "4.0.1", | ||
"System.Text.Encoding": "4.0.11", | ||
"System.Text.Encoding.Extensions": "4.0.11", | ||
"System.Text.RegularExpressions": "4.1.0", | ||
"System.Threading": "4.0.11", | ||
"System.Threading.Tasks": "4.0.11", | ||
"System.Xml.ReaderWriter": "4.0.11", | ||
"System.Xml.XDocument": "4.0.11", | ||
"System.Runtime.Serialization.Primitives": "4.1.1", | ||
"System.Dynamic.Runtime": "4.0.11", | ||
"Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" | ||
} | ||
}, | ||
"netstandard1.1": { | ||
"buildOptions": { "define": [ "PORTABLE" ] }, | ||
"imports": ["dnxcore50", "portable-net45+win8"], | ||
"dependencies": { | ||
"NETStandard.Library": "1.6.0", | ||
"System.Runtime.Serialization.Primitives": "4.1.1", | ||
"System.Dynamic.Runtime": "4.0.11", | ||
"Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)" | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"projects": [ "../TestFramework", "Microsoft.Azure.Search", "Search.Management.Tests", "Search.Tests" ] | ||
"projects": [ "Microsoft.Azure.Search", "Microsoft.Azure.Management.Search", "Search.Management.Tests", "Search.Tests" ] | ||
} |