Skip to content

Commit

Permalink
CodeGen from PR 32241 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge f41a1fe0c48842cb8daacb1f20bd77698317a12a into f8a6ecd39798b8e1e7c62c475d678bafb6e6f915
  • Loading branch information
SDKAuto committed Jan 21, 2025
1 parent 0ed7c7b commit 45c4d62
Show file tree
Hide file tree
Showing 608 changed files with 97,104 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Mdp/Mdp.Autorest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ For information on how to develop for `Az.Mdp`, see [how-to.md](how-to.md).
commit: 8b9c9e84b2ed9da6d74ce0856bb0d8973912cb2f
require:
# readme.azure.noprofile.md is the common configuration file
- $(this-folder)/../../readme.azure.noprofile.md
- $(repo)/specification/devopsinfrastructure/resource-manager/readme.md
- /mnt/vss/_work/1/s/azure-powershell/tools/SwaggerCI/readme.azure.noprofile.md
- /mnt/vss/_work/1/s/azure-rest-api-specs/specification/devopsinfrastructure/resource-manager/readme.md

try-require:
- $(repo)/specification/devopsinfrastructure/resource-manager/readme.powershell.md
- /mnt/vss/_work/1/s/azure-rest-api-specs/specification/devopsinfrastructure/resource-manager/readme.powershell.md

# For new RP, the version is 0.1.0
module-version: 0.1.0
Expand Down Expand Up @@ -70,3 +70,4 @@ directive:
- OrganizationProfile
- FabricProfile
```
1 change: 1 addition & 0 deletions swaggerci/devopsinfrastructure.DefaultTag/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
5 changes: 5 additions & 0 deletions swaggerci/devopsinfrastructure.DefaultTag/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
bin
obj
.vs
tools
test/*-TestResults.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>0.1.0</Version>
<LangVersion>7.1</LangVersion>
<TargetFramework>netstandard2.0</TargetFramework>
<OutputType>Library</OutputType>
<AssemblyName>Az.ManagedDevOpsInfrastructure.private</AssemblyName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<RootNamespace>Microsoft.Azure.PowerShell.Cmdlets.ManagedDevOpsInfrastructure</RootNamespace>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>./bin</OutputPath>
<PublishDir>$(OutputPath)</PublishDir>
<NuspecFile>Az.ManagedDevOpsInfrastructure.nuspec</NuspecFile>
<NoPackageAnalysis>true</NoPackageAnalysis>
<!-- Some methods are marked async and don't have an await in them -->
<!-- warning CS1591: Missing XML comment for publicly visible type or member -->
<NoWarn>1998, 1591</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DelaySign>false</DelaySign>
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<SignAssembly>true</SignAssembly>
<DelaySign>true</DelaySign>
<AssemblyOriginatorKeyFile>MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
<DefineConstants>TRACE;RELEASE;NETSTANDARD;SIGN</DefineConstants>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" />
</ItemGroup>

<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);resources/**</DefaultItemExcludes>
</PropertyGroup>

</Project>
Loading

0 comments on commit 45c4d62

Please sign in to comment.