|
4 | 4 | <TargetFramework>netstandard2.0</TargetFramework> |
5 | 5 | <OutputType>Library</OutputType> |
6 | 6 | <ProjectGuid>{1DF0509F-4D84-445F-BB98-CEA69EDD68FE}</ProjectGuid> |
7 | | - <!-- <DebugType>portable</DebugType> --> |
| 7 | + <LangVersion>9.0</LangVersion> |
8 | 8 | <NeutralLanguage>en-US</NeutralLanguage> |
9 | 9 | <DebugSymbols>true</DebugSymbols> |
| 10 | + <DebugType>portable</DebugType> |
| 11 | + <IncludeSymbols>true</IncludeSymbols> |
| 12 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 13 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 14 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
10 | 15 | <GenerateAssemblyInfo>true</GenerateAssemblyInfo> |
11 | | - <!-- <TreatWarningsAsErrors>true</TreatWarningsAsErrors> --> |
12 | | - <Authors>Bernie White</Authors> |
13 | | - <AssemblyTitle>PSDocs</AssemblyTitle> |
| 16 | + <PackageId>Microsoft.PSDocs.Azure.Core</PackageId> |
| 17 | + <EnableNuget>false</EnableNuget> |
| 18 | + <IsPackable>false</IsPackable> |
| 19 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 20 | + </PropertyGroup> |
| 21 | + |
| 22 | + <!-- Package metadata --> |
| 23 | + <PropertyGroup> |
| 24 | + <Authors>Microsoft</Authors> |
| 25 | + <AssemblyTitle>PSDocs for Azure</AssemblyTitle> |
14 | 26 | <RepositoryUrl>https://github.com/Azure/PSDocs.Azure</RepositoryUrl> |
15 | | - <PackageLicenseExpression>https://github.com/Azure/PSDocs.Azure/blob/main/LICENSE</PackageLicenseExpression> |
| 27 | + <RepositoryType>git</RepositoryType> |
| 28 | + <PackageProjectUrl>https://aka.ms/ps-docs-azure</PackageProjectUrl> |
| 29 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 30 | + <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
| 31 | + <PackageTags>PSDocs;Azure;Bicep;IaC;markdown;documentation;</PackageTags> |
16 | 32 | <Version>0.0.1</Version> |
17 | | - <Copyright>Copyright (c) Microsoft Corporation. Licensed under the MIT License.</Copyright> |
| 33 | + <Company>Microsoft Corporation</Company> |
| 34 | + <Copyright>© Microsoft Corporation. All rights reserved.</Copyright> |
18 | 35 | <Description>Generate markdown from Azure infrastructure as code (IaC) artifacts. |
19 | 36 |
|
20 | | -This project uses GitHub Issues to track bugs and feature requests. See GitHub project for more information.</Description> |
21 | | - </PropertyGroup> |
22 | | - |
23 | | - <PropertyGroup> |
24 | | - <AnalysisMode>AllEnabledByDefault</AnalysisMode> |
25 | | - <EnableNETAnalyzers>true</EnableNETAnalyzers> |
| 37 | + This project uses GitHub Issues to track bugs and feature requests. See GitHub project for |
| 38 | + more information.</Description> |
| 39 | + <PackageReleaseNotes>For a list of changes see https://aka.ms/ps-rule-docs.</PackageReleaseNotes> |
| 40 | + <PackageIcon>package_icon.png</PackageIcon> |
26 | 41 | </PropertyGroup> |
27 | 42 |
|
28 | 43 | <PropertyGroup Condition="'$(OS)' == 'Windows_NT'"> |
29 | 44 | <DefineConstants>Windows</DefineConstants> |
30 | 45 | </PropertyGroup> |
31 | 46 |
|
| 47 | + <PropertyGroup Condition="'$(TF_BUILD)' == 'true'"> |
| 48 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 49 | + </PropertyGroup> |
| 50 | + |
| 51 | + <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
| 52 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 53 | + </PropertyGroup> |
| 54 | + |
| 55 | + <ItemGroup> |
| 56 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> |
| 57 | + </ItemGroup> |
| 58 | + |
| 59 | + <ItemGroup> |
| 60 | + <None Include="..\..\docs\assets\package_icon.png"> |
| 61 | + <Pack>True</Pack> |
| 62 | + <PackagePath>\</PackagePath> |
| 63 | + </None> |
| 64 | + </ItemGroup> |
| 65 | + |
| 66 | + <ItemGroup Condition="'$(PackageReadmeFile)' != ''"> |
| 67 | + <None Include="README.md"> |
| 68 | + <Pack>True</Pack> |
| 69 | + <PackagePath>\</PackagePath> |
| 70 | + </None> |
| 71 | + </ItemGroup> |
| 72 | + |
32 | 73 | <ItemGroup> |
33 | 74 | <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="7.0.4"> |
34 | 75 | <PrivateAssets>all</PrivateAssets> |
|
0 commit comments