Skip to content

Commit 3f7f110

Browse files
authored
[template-LLC] Rename LLC to Dataplane Code Gen (#25390)
* Rename LLC to Dataplane Code Gen
1 parent c949662 commit 3f7f110

22 files changed

+30
-30
lines changed

sdk/template-LLC/Azure.Template.LLC/Azure.Template.LLC.sln renamed to sdk/template-dpg/Azure.Template.Generated/Azure.Template.Generated.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ VisualStudioVersion = 16.0.29709.97
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Core.TestFramework", "..\..\core\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj", "{8052009B-2126-44A3-88CD-4F3B17894C64}"
77
EndProject
8-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Template.LLC", "src\Azure.Template.LLC.csproj", "{AF06AB51-3B39-4905-B7EA-CD7563DE5770}"
8+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Template.Generated", "src\Azure.Template.Generated.csproj", "{AF06AB51-3B39-4905-B7EA-CD7563DE5770}"
99
EndProject
10-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Template.LLC.Tests", "tests\Azure.Template.LLC.Tests.csproj", "{ADB00BD6-8FEE-4176-BE15-4F530F5C8F29}"
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Azure.Template.Generated.Tests", "tests\Azure.Template.Generated.Tests.csproj", "{ADB00BD6-8FEE-4176-BE15-4F530F5C8F29}"
1111
EndProject
1212
Global
1313
GlobalSection(SolutionConfigurationPlatforms) = preSolution
File renamed without changes.

sdk/template-LLC/Azure.Template.LLC/README.md renamed to sdk/template-dpg/Azure.Template.Generated/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# README.md template
22

3-
Use the guidelines in each section of this template to ensure consistency and readability of your README. The README resides in your package's GitHub repository at the root of its directory within the repo. It's also used as the package distribution page (NuGet) and as a Quickstart on docs.microsoft.com. See [Azure.Template.LLC/README.md](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/template-LLC/Azure.Template.LLC/README.md) for an example following this template.
3+
Use the guidelines in each section of this template to ensure consistency and readability of your README. The README resides in your package's GitHub repository at the root of its directory within the repo. It's also used as the package distribution page (NuGet) and as a Quickstart on docs.microsoft.com. See [Azure.Template.Generated/README.md](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/template-dpg/Azure.Template.Generated/README.md) for an example following this template.
44

55
**Title**: The H1 of your README should be in the format: `# [Product Name] client library for [Language]`
66

@@ -16,7 +16,7 @@ Use the guidelines in each section of this template to ensure consistency and re
1616
* Next, add a **bulleted list** of the **most common tasks** supported by the package or library, prefaced with "Use the client library for [Product Name] to:". Then, provide code snippets for these tasks in the [Examples](#examples) section later in the document. Keep the task list short but include those tasks most developers need to perform with your package.
1717
* Include this single line of links targeting your product's content at the bottom of the introduction, making any adjustments as necessary:
1818

19-
[Source code](https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/template-LLC/Azure.Template.LLC/src) | [Package (NuGet)](https://www.nuget.org/packages/Azure.AI.AnomalyDetector) | [API reference documentation](https://azure.github.io/azure-sdk-for-net/anomalydetector.html) | [Product documentation](https://docs.microsoft.com/azure/cognitive-services/anomaly-detector/)
19+
[Source code](https://github.com/Azure/azure-sdk-for-net/tree/main/sdk/template-dpg/Azure.Template.Generated/src) | [Package (NuGet)](https://www.nuget.org/packages/Azure.AI.AnomalyDetector) | [API reference documentation](https://azure.github.io/azure-sdk-for-net/anomalydetector.html) | [Product documentation](https://docs.microsoft.com/azure/cognitive-services/anomaly-detector/)
2020

2121
> TIP: Your README should be as **brief** as possible but **no more brief** than necessary to get a developer new to Azure, the service, or the package up and running quickly. Keep it brief, but include everything a developer needs to make their first API call successfully.
2222
@@ -40,7 +40,7 @@ If your library requires authentication for use, such as for Azure services, inc
4040

4141
For example, include details on obtaining an account key and endpoint URI, setting environment variables for each, and initializing the client object.
4242

43-
```C# Snippet:TemplateLLCAuthenticate
43+
```C# Snippet:TemplateServiceAuthenticate
4444
var serviceClient = new TemplateServiceClient(new DefaultAzureCredential(), new Uri(endpoint));
4545
```
4646

sdk/template-LLC/Azure.Template.LLC/api/Azure.Template.LLC.netstandard2.0.cs renamed to sdk/template-dpg/Azure.Template.Generated/api/Azure.Template.Generated.netstandard2.0.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
namespace Azure.Template.LLC
1+
namespace Azure.Template.Generated
22
{
33
public partial class TemplateServiceClient
44
{
55
protected TemplateServiceClient() { }
6-
public TemplateServiceClient(Azure.Core.TokenCredential credential, System.Uri endpoint = null, Azure.Template.LLC.TemplateServiceClientOptions options = null) { }
6+
public TemplateServiceClient(Azure.Core.TokenCredential credential, System.Uri endpoint = null, Azure.Template.Generated.TemplateServiceClientOptions options = null) { }
77
public virtual Azure.Core.Pipeline.HttpPipeline Pipeline { get { throw null; } }
88
public virtual Azure.Response Create(Azure.Core.RequestContent content, Azure.RequestContext context = null) { throw null; }
99
public virtual System.Threading.Tasks.Task<Azure.Response> CreateAsync(Azure.Core.RequestContent content, Azure.RequestContext context = null) { throw null; }
@@ -16,7 +16,7 @@ public TemplateServiceClient(Azure.Core.TokenCredential credential, System.Uri e
1616
}
1717
public partial class TemplateServiceClientOptions : Azure.Core.ClientOptions
1818
{
19-
public TemplateServiceClientOptions(Azure.Template.LLC.TemplateServiceClientOptions.ServiceVersion version = Azure.Template.LLC.TemplateServiceClientOptions.ServiceVersion.V1_0_0) { }
19+
public TemplateServiceClientOptions(Azure.Template.Generated.TemplateServiceClientOptions.ServiceVersion version = Azure.Template.Generated.TemplateServiceClientOptions.ServiceVersion.V1_0_0) { }
2020
public enum ServiceVersion
2121
{
2222
V1_0_0 = 1,

sdk/template-LLC/Azure.Template.LLC/src/Azure.Template.LLC.csproj renamed to sdk/template-dpg/Azure.Template.Generated/src/Azure.Template.Generated.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<Description>This is a LLC template project to demonstrate how to create a package that uses code generation as well as use for testing our build and release pipelines</Description>
4-
<AssemblyTitle>Azure SDK LLC Template</AssemblyTitle>
3+
<Description>This is a template project to demonstrating how to create a package that uses Azure SDK code generation to create a library for a data plane Azure service. It includes basic templates for setting up build and release pipelines, live and recorded tests, as well as Samples, README, and Changelog files.</Description>
4+
<AssemblyTitle>Azure SDK Code Generation Template for Azure Data Plane</AssemblyTitle>
55
<Version>1.0.0-beta.1</Version>
66
<PackageTags>Azure Template</PackageTags>
77
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>

sdk/template-LLC/Azure.Template.LLC/src/Generated/TemplateServiceClient.cs renamed to sdk/template-dpg/Azure.Template.Generated/src/Generated/TemplateServiceClient.cs

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/template-LLC/Azure.Template.LLC/src/Generated/TemplateServiceClientOptions.cs renamed to sdk/template-dpg/Azure.Template.Generated/src/Generated/TemplateServiceClientOptions.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Azure.Template.LLC Code Generation
1+
# Azure SDK Code Generation for Data Plane
22

33
Run `dotnet build /t:GenerateCode` to generate code.
44

@@ -8,9 +8,9 @@ Run `dotnet build /t:GenerateCode` to generate code.
88
``` yaml
99
input-file:
1010
- $(this-folder)/swagger/swagger.json
11-
namespace: Azure.Template.LLC
11+
namespace: Azure.Template.Generated
1212
public-clients: true
1313
low-level-client: true
1414
security: AADToken
15-
security-scopes: https://dev.LLCtemplate.net/.default
15+
security-scopes: https://dev.azuresdkgenerated.net/.default
1616
```

0 commit comments

Comments
 (0)