forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding ADF V2 SDK * This SDK is for the new Azure Data Factory V2 platform/service, which lives side-by-side with the existing "V1" GA service. * Added ADF V2 description and release notes and fixed the assembly version
- Loading branch information
1 parent
4ec661e
commit 536c769
Showing
352 changed files
with
46,644 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
src/SDKs/DataFactory/DataFactory.Tests/DataFactory.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,33 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Import Project="$([MSBuild]::GetPathOfFileAbove('AzSdk.test.reference.props'))" /> | ||
<PropertyGroup> | ||
<PackageId>DataFactory.Tests</PackageId> | ||
<Description>DataFactory.Tests Class Library</Description> | ||
<AssemblyName>DataFactory.Tests</AssemblyName> | ||
<VersionPrefix>1.0.0-preview</VersionPrefix> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>netcoreapp1.1</TargetFrameworks> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\Management.DataFactory\Microsoft.Azure.Management.DataFactory.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="SessionRecords\**\*.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
<None Update="TestData\**\*.json"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="15.3.0" /> | ||
<PackageReference Update="Microsoft.Rest.ClientRuntime.Azure.TestFramework" Version="1.7.2" /> | ||
</ItemGroup> | ||
</Project> |
27 changes: 27 additions & 0 deletions
27
src/SDKs/DataFactory/DataFactory.Tests/JsonSamples/ActivityJsonSamples.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,27 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
|
||
using DataFactory.Tests.Utils; | ||
|
||
namespace DataFactory.Tests.JsonSamples | ||
{ | ||
public class ActivityJsonSamples : JsonSampleCollection<ActivityJsonSamples> | ||
{ | ||
[JsonSample] | ||
public const string ExecutePipelineActivity = @" | ||
{ | ||
""name"": ""myExecutePipelineActivity"", | ||
""type"": ""ExecutePipeline"", | ||
""typeProperties"": { | ||
""pipeline"": { | ||
""referenceName"": ""myTriggeredPipeline"", | ||
""type"":""PipelineReference"" | ||
}, | ||
""parameters"": { | ||
} | ||
} | ||
} | ||
"; | ||
} | ||
} |
Oops, something went wrong.