-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from Azure/master
.
- Loading branch information
Showing
146 changed files
with
54,912 additions
and
126 deletions.
There are no files selected for viewing
File renamed without changes.
2,745 changes: 2,745 additions & 0 deletions
2,745
src/Search/Search.Management.Tests/Generated/SearchManagementClient.cs
Large diffs are not rendered by default.
Oops, something went wrong.
51 changes: 51 additions & 0 deletions
51
src/Search/Search.Management.Tests/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,51 @@ | ||
// | ||
// Copyright (c) Microsoft. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("Search.Management.Tests")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("Search.Management.Tests")] | ||
[assembly: AssemblyCopyright("Copyright © 2014")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
// Setting ComVisible to false makes the types in this assembly not visible | ||
// to COM components. If you need to access a type in this assembly from | ||
// COM, set the ComVisible attribute to true on that type. | ||
[assembly: ComVisible(false)] | ||
|
||
// The following GUID is for the ID of the typelib if this project is exposed to COM | ||
[assembly: Guid("84ac229a-27d3-4ffd-99e4-96561bf442cb")] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the values or you can default the Build and Revision Numbers | ||
// by using the '*' as shown below: | ||
// [assembly: AssemblyVersion("1.0.*")] | ||
[assembly: AssemblyVersion("1.0.0.0")] | ||
[assembly: AssemblyFileVersion("1.0.0.0")] |
42 changes: 42 additions & 0 deletions
42
src/Search/Search.Management.Tests/Search.Management.Tests.csproj
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,42 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<ProjectGuid>{B89334CA-F73C-4B04-9B38-D61FEE4D9DE8}</ProjectGuid> | ||
<RootNamespace>Search.Management.Tests</RootNamespace> | ||
<AssemblyName>Search.Management.Tests</AssemblyName> | ||
</PropertyGroup> | ||
<Import Project="..\..\..\tools\Library.Settings.targets" /> | ||
<Import Project="$(LibraryToolsFolder)\Test.Dependencies.target" /> | ||
<ItemGroup> | ||
<Compile Include="Generated\SearchManagementClient.cs" /> | ||
<Compile Include="Tests\AdminKeyTests.cs" /> | ||
<Compile Include="Tests\QueryKeyTests.cs" /> | ||
<Compile Include="Tests\SearchServiceTests.cs" /> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="Utilities\ResourceGroupFixture.cs" /> | ||
<Compile Include="Utilities\SearchServiceFixture.cs" /> | ||
<Compile Include="Utilities\SearchServiceUndoHandler.cs" /> | ||
<Compile Include="Utilities\SearchTestBase.cs" /> | ||
<Compile Include="Utilities\SearchTestUtilities.cs" /> | ||
<Compile Include="Utilities\UndoContextDiscoveryExtensions.cs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="SessionRecords\Microsoft.Azure.Management.Search.Tests.AdminKeyTests\CanListAdminKeys.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Include="SessionRecords\Microsoft.Azure.Management.Search.Tests.QueryKeyTests\CanListQueryKeys.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Include="SessionRecords\Microsoft.Azure.Management.Search.Tests.SearchServiceTests\CanListServices.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Reference Include="Microsoft.Azure.ResourceManager"> | ||
<HintPath>..\..\..\packages\Microsoft.Azure.Management.Resources.2.18.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll</HintPath> | ||
</Reference> | ||
</ItemGroup> | ||
</Project> |
Oops, something went wrong.