Skip to content

Commit 503b599

Browse files
committed
Add generation of 0.2.9
1 parent 413c235 commit 503b599

File tree

454 files changed

+14986
-35322
lines changed

Some content is hidden

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

454 files changed

+14986
-35322
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
bin
2+
obj
3+
.vs
4+
generated
5+
internal
6+
exports
7+
tools
8+
custom/*.psm1
9+
custom/autogen-model-cmdlets
10+
test/*-TestResults.xml
11+
/*.ps1
12+
/*.ps1xml
13+
/*.psm1
14+
/*.snk
15+
/*.csproj
16+
/*.nuspec
Lines changed: 39 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,44 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2+
23
<PropertyGroup>
3-
<PsModuleName>DnsResolver</PsModuleName>
4-
<PsRootModuleName>DnsResolver</PsRootModuleName>
4+
<Version>0.2.9</Version>
5+
<LangVersion>7.1</LangVersion>
6+
<TargetFramework>netstandard2.0</TargetFramework>
7+
<OutputType>Library</OutputType>
8+
<AssemblyName>Az.DnsResolver.private</AssemblyName>
9+
<RootNamespace>Microsoft.Azure.PowerShell.Cmdlets.DnsResolver</RootNamespace>
10+
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
11+
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
12+
<OutputPath>./bin</OutputPath>
13+
<PublishDir>$(OutputPath)</PublishDir>
14+
<NuspecFile>Az.DnsResolver.nuspec</NuspecFile>
15+
<NoPackageAnalysis>true</NoPackageAnalysis>
16+
<!-- Some methods are marked async and don't have an await in them -->
17+
<!-- warning CS1591: Missing XML comment for publicly visible type or member -->
18+
<NoWarn>1998, 1591</NoWarn>
19+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
20+
<WarningsAsErrors />
21+
</PropertyGroup>
22+
23+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
24+
<DelaySign>false</DelaySign>
25+
<DefineConstants>TRACE;DEBUG;NETSTANDARD</DefineConstants>
26+
</PropertyGroup>
27+
28+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
29+
<SignAssembly>true</SignAssembly>
30+
<DelaySign>true</DelaySign>
31+
<AssemblyOriginatorKeyFile>MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
32+
<DefineConstants>TRACE;RELEASE;NETSTANDARD;SIGN</DefineConstants>
533
</PropertyGroup>
634

7-
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., build.proj))\src\Az.autorest.props" />
8-
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory).., build.proj))\src\Az.Post.props" />
35+
<ItemGroup>
36+
<PackageReference Include="PowerShellStandard.Library" Version="5.1.0" />
37+
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" />
38+
</ItemGroup>
39+
40+
<PropertyGroup>
41+
<DefaultItemExcludes>$(DefaultItemExcludes);resources/**</DefaultItemExcludes>
42+
</PropertyGroup>
943

10-
</Project>
44+
</Project>

0 commit comments

Comments
 (0)