Skip to content

Commit

Permalink
[Private][DataProtection] Initial Commit (Azure#13756)
Browse files Browse the repository at this point in the history
* Move Communication and RedisEnterpriseCache to master branch (Azure#13729)

* Move Communication and RedisEnterpriseCache to master branch

* Suppress two json files for cred scan

* Update module docs for redisenterprisecache and communication

* [Tool]Add PoliCheck policy for CloudService (Azure#13707)

* Add PoliCheck policy

* Add PoliCheck policy

Co-authored-by: wyunchi-ms <[email protected]>

* Initial commit

Co-authored-by: Xiaogang <[email protected]>
Co-authored-by: Yunchi Wang <[email protected]>
Co-authored-by: wyunchi-ms <[email protected]>
  • Loading branch information
4 people committed Mar 3, 2021
1 parent ea9ac21 commit e99e7f0
Show file tree
Hide file tree
Showing 891 changed files with 152,955 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/DataProtection/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
5 changes: 5 additions & 0 deletions src/DataProtection/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
bin
obj
.vs
tools
test/*-TestResults.xml
43 changes: 43 additions & 0 deletions src/DataProtection/Az.DataProtection.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>0.1.0</Version>
<LangVersion>7.1</LangVersion>
<TargetFramework>netstandard2.0</TargetFramework>
<OutputType>Library</OutputType>
<AssemblyName>Az.DataProtection.private</AssemblyName>
<RootNamespace>Microsoft.Azure.PowerShell.Cmdlets.DataProtection</RootNamespace>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>./bin</OutputPath>
<PublishDir>$(OutputPath)</PublishDir>
<NuspecFile>Az.DataProtection.nuspec</NuspecFile>
<NoPackageAnalysis>true</NoPackageAnalysis>
<!-- Some methods are marked async and don't have an await in them -->
<NoWarn>1998</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 e99e7f0

Please sign in to comment.