Skip to content

Commit 9780d1b

Browse files
author
SDKAuto
committed
CodeGen from PR 18428 in Azure/azure-rest-api-specs
Merge 645523062290de00610f3b19aee550167278b7b3 into d07d484e1e799262a03fb8e84bd5d66082150ba4
1 parent 3e2d09f commit 9780d1b

File tree

358 files changed

+65372
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

358 files changed

+65372
-0
lines changed

swaggerci/hanaonazure/.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

swaggerci/hanaonazure/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
bin
2+
obj
3+
.vs
4+
tools
5+
test/*-TestResults.xml

swaggerci/hanaonazure/Az.Hana.csproj

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<Version>0.1.0</Version>
5+
<LangVersion>7.1</LangVersion>
6+
<TargetFramework>netstandard2.0</TargetFramework>
7+
<OutputType>Library</OutputType>
8+
<AssemblyName>Az.Hana.private</AssemblyName>
9+
<RootNamespace>Microsoft.Azure.PowerShell.Cmdlets.Hana</RootNamespace>
10+
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
11+
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
12+
<OutputPath>./bin</OutputPath>
13+
<PublishDir>$(OutputPath)</PublishDir>
14+
<NuspecFile>Az.Hana.nuspec</NuspecFile>
15+
<NoPackageAnalysis>true</NoPackageAnalysis>
16+
<!-- Some methods are marked async and don't have an await in them -->
17+
<NoWarn>1998</NoWarn>
18+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
19+
<WarningsAsErrors />
20+
</PropertyGroup>
21+
22+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
23+
<DelaySign>false</DelaySign>
24+
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
25+
</PropertyGroup>
26+
27+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
28+
<SignAssembly>true</SignAssembly>
29+
<DelaySign>true</DelaySign>
30+
<AssemblyOriginatorKeyFile>MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
31+
<DefineConstants>TRACE;RELEASE;NETSTANDARD;SIGN</DefineConstants>
32+
</PropertyGroup>
33+
34+
<ItemGroup>
35+
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0" />
36+
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" />
37+
</ItemGroup>
38+
39+
<PropertyGroup>
40+
<DefaultItemExcludes>$(DefaultItemExcludes);resources/**</DefaultItemExcludes>
41+
</PropertyGroup>
42+
43+
</Project>

0 commit comments

Comments
 (0)