|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | | - <PropertyGroup> |
3 | | - <PackageType>Template</PackageType> |
4 | | - <PackageVersion>1.0.0</PackageVersion> |
5 | | - <PackageId>Bicep.LocalDeploy.Templates</PackageId> |
6 | | - <Title>Bicep Local Deploy Extension Templates</Title> |
7 | | - <Authors>Gijsreyn</Authors> |
8 | | - <Description>Templates for creating Bicep Local Deploy extension projects. Includes complete project structure with resource handlers, REST API integration, and documentation attributes.</Description> |
9 | | - <PackageTags>dotnet-new;templates;bicep;local-deploy;extension;bicep-extension</PackageTags> |
10 | | - <PackageProjectUrl>https://github.com/Gijsreyn/bicep-local-docgen</PackageProjectUrl> |
11 | | - <RepositoryUrl>https://github.com/Gijsreyn/bicep-local-docgen</RepositoryUrl> |
12 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
13 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
14 | | - <IncludeContentInPack>true</IncludeContentInPack> |
15 | | - <IncludeBuildOutput>false</IncludeBuildOutput> |
16 | | - <ContentTargetFolders>content</ContentTargetFolders> |
17 | | - <NoWarn>$(NoWarn);NU5128</NoWarn> |
18 | | - <NoDefaultExcludes>true</NoDefaultExcludes> |
19 | | - <NoBuild>true</NoBuild> |
20 | | - </PropertyGroup> |
21 | | - <ItemGroup> |
22 | | - <Content Include="content\**\*" Exclude="content\**\bin\**;content\**\obj\**" /> |
23 | | - <Compile Remove="**\*" /> |
24 | | - </ItemGroup> |
25 | | - <ItemGroup> |
26 | | - <None Include="README.md" Pack="true" PackagePath="\" /> |
27 | | - </ItemGroup> |
28 | | - <ItemGroup> |
29 | | - <None Include="..\..\logo.png" Pack="true" PackagePath=""> |
30 | | - <Link>logo.png</Link> |
31 | | - </None> |
32 | | - </ItemGroup> |
| 2 | + <PropertyGroup> |
| 3 | + <PackageType>Template</PackageType> |
| 4 | + <PackageVersion>1.0.0</PackageVersion> |
| 5 | + <PackageId>Bicep.LocalDeploy.Templates</PackageId> |
| 6 | + <Title>Bicep Local Deploy Extension Templates</Title> |
| 7 | + <Authors>Gijsreyn</Authors> |
| 8 | + <Description>Templates for creating Bicep Local Deploy extension projects. Includes complete project structure with resource handlers, REST API integration, and documentation attributes.</Description> |
| 9 | + <PackageTags>dotnet-new;templates;bicep;local-deploy;extension;bicep-extension</PackageTags> |
| 10 | + <PackageProjectUrl>https://github.com/Gijsreyn/bicep-local-docgen</PackageProjectUrl> |
| 11 | + <RepositoryUrl>https://github.com/Gijsreyn/bicep-local-docgen</RepositoryUrl> |
| 12 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 13 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 14 | + <IncludeContentInPack>true</IncludeContentInPack> |
| 15 | + <IncludeBuildOutput>false</IncludeBuildOutput> |
| 16 | + <ContentTargetFolders>content</ContentTargetFolders> |
| 17 | + <NoWarn>$(NoWarn);NU5128</NoWarn> |
| 18 | + <NoDefaultExcludes>true</NoDefaultExcludes> |
| 19 | + <NoBuild>true</NoBuild> |
| 20 | + </PropertyGroup> |
| 21 | + <ItemGroup> |
| 22 | + <Content Include="content\**\*" Exclude="content\**\bin\**;content\**\obj\**" /> |
| 23 | + <Compile Remove="**\*" /> |
| 24 | + </ItemGroup> |
| 25 | + <ItemGroup> |
| 26 | + <None Include="README.md" Pack="true" PackagePath="\" /> |
| 27 | + </ItemGroup> |
| 28 | + <ItemGroup> |
| 29 | + <None Include="..\..\logo.png" Pack="true" PackagePath=""> |
| 30 | + <Link>logo.png</Link> |
| 31 | + </None> |
| 32 | + </ItemGroup> |
| 33 | + |
| 34 | + <PropertyGroup Condition="'$(TargetFrameworkIdentifier)' == ''"> |
| 35 | + <TargetFrameworkVersion>9.0</TargetFrameworkVersion> |
| 36 | + </PropertyGroup> |
33 | 37 | </Project> |
0 commit comments