|
1 |
| -<Project Sdk="Microsoft.NET.Sdk"> |
2 |
| - |
3 |
| - <PropertyGroup> |
4 |
| - <TargetFramework>netstandard2.0</TargetFramework> |
5 |
| - <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> |
6 |
| - <PublishRepositoryUrl>true</PublishRepositoryUrl> |
7 |
| - <EmbedUntrackedSources>true</EmbedUntrackedSources> |
8 |
| - <SourceLinkCreate>true</SourceLinkCreate> |
9 |
| - <NoWarn>NU5100,CA1031,CA1819,CA1027</NoWarn> |
10 |
| - </PropertyGroup> |
11 |
| - |
12 |
| - <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
13 |
| - <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
14 |
| - </PropertyGroup> |
15 |
| - |
16 |
| - <PropertyGroup> |
17 |
| - <PackageId>AggregateConfigBuildTask</PackageId> |
18 |
| - <Version Condition=" '$(Version)' == '' ">0.0.1</Version> |
19 |
| - <Authors>Billy Richardson</Authors> |
20 |
| - <Owner>richardsondev</Owner> |
21 |
| - <Company>https://richardson.software</Company> |
22 |
| - <Description>Merges configuration files at build time, allowing them to be embedded as resources for streamlined deployment and access.</Description> |
23 |
| - <PackageTags>yaml, json, arm, build, configuration, msbuild</PackageTags> |
24 |
| - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
25 |
| - <RepositoryUrl>https://github.com/richardsondev/AggregateConfigBuildTask</RepositoryUrl> |
26 |
| - <PackageProjectUrl>https://github.com/richardsondev/AggregateConfigBuildTask</PackageProjectUrl> |
27 |
| - <PackageReleaseNotes>https://github.com/richardsondev/AggregateConfigBuildTask/releases/tag/v$(Version)</PackageReleaseNotes> |
28 |
| - <PackageReadmeFile>docs/README.md</PackageReadmeFile> |
29 |
| - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
30 |
| - <IncludeSymbols>true</IncludeSymbols> |
31 |
| - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
32 |
| - <NoPackageAnalysis>true</NoPackageAnalysis> |
33 |
| - <BuildOutputTargetFolder>tasks</BuildOutputTargetFolder> |
34 |
| - <PackageIcon>icon.png</PackageIcon> |
35 |
| - </PropertyGroup> |
36 |
| - |
37 |
| - <!-- Build time packages--> |
38 |
| - <ItemGroup> |
39 |
| - <PackageReference Include="Microsoft.Build.Framework" PrivateAssets="all" /> |
40 |
| - <PackageReference Include="Microsoft.Build.Utilities.Core" PrivateAssets="all" /> |
41 |
| - <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="all" /> |
42 |
| - </ItemGroup> |
43 |
| - |
44 |
| - <!-- Runtime packages --> |
45 |
| - <ItemGroup> |
46 |
| - <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" PrivateAssets="all" /> |
47 |
| - <PackageReference Include="System.Text.Json" PrivateAssets="all" /> |
48 |
| - <PackageReference Include="YamlDotNet" PrivateAssets="all" GeneratePathProperty="true" /> |
49 |
| - <PackageReference Include="YamlDotNet.System.Text.Json" PrivateAssets="all" /> |
50 |
| - </ItemGroup> |
51 |
| - |
52 |
| - <ItemGroup> |
53 |
| - <None Include="$(OutputPath)/Microsoft.Bcl.AsyncInterfaces.dll" Pack="true" PackagePath="/tasks/netstandard2.0/" /> |
54 |
| - <None Include="$(OutputPath)/System.Text.Json.dll" Pack="true" PackagePath="/tasks/netstandard2.0/" /> |
55 |
| - <None Include="$(OutputPath)/YamlDotNet.dll" Pack="true" PackagePath="/tasks/netstandard2.0/" /> |
56 |
| - <None Include="$(OutputPath)/YamlDotNet.System.Text.Json.dll" Pack="true" PackagePath="/tasks/netstandard2.0/" /> |
57 |
| - <None Include="build/AggregateConfigBuildTask.targets" Pack="true" PackagePath="/build/AggregateConfigBuildTask.targets" /> |
58 |
| - <None Include="../ThirdPartyNotices.txt" Pack="true" PackagePath="/" /> |
59 |
| - <None Include="../../LICENSE" Pack="true" PackagePath="/licenses/"> |
60 |
| - <Link>licenses/LICENSE</Link> |
61 |
| - </None> |
62 |
| - <None Include="../../README.md" Pack="true" PackagePath="/docs/" /> |
63 |
| - <None Include="../../image/icon/icon_128.png" Pack="true" PackagePath="/icon.png" /> |
64 |
| - </ItemGroup> |
65 |
| - |
66 |
| -</Project> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFramework>netstandard2.0</TargetFramework> |
| 5 | + <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies> |
| 6 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 7 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 8 | + <SourceLinkCreate>true</SourceLinkCreate> |
| 9 | + <NoWarn>NU5100,CA1031,CA1819,CA1027</NoWarn> |
| 10 | + </PropertyGroup> |
| 11 | + |
| 12 | + <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
| 13 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 14 | + </PropertyGroup> |
| 15 | + |
| 16 | + <PropertyGroup> |
| 17 | + <PackageId>AggregateConfigBuildTask</PackageId> |
| 18 | + <Version Condition=" '$(Version)' == '' ">0.0.1</Version> |
| 19 | + <Authors>Billy Richardson</Authors> |
| 20 | + <Owner>richardsondev</Owner> |
| 21 | + <Company>https://richardson.software</Company> |
| 22 | + <Description>Merges configuration files at build time, allowing them to be embedded as resources for streamlined deployment and access.</Description> |
| 23 | + <PackageTags>yaml, json, arm, build, configuration, msbuild</PackageTags> |
| 24 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 25 | + <RepositoryUrl>https://github.com/richardsondev/AggregateConfigBuildTask</RepositoryUrl> |
| 26 | + <PackageProjectUrl>https://github.com/richardsondev/AggregateConfigBuildTask</PackageProjectUrl> |
| 27 | + <PackageReleaseNotes>https://github.com/richardsondev/AggregateConfigBuildTask/releases/tag/v$(Version)</PackageReleaseNotes> |
| 28 | + <PackageReadmeFile>docs/README.md</PackageReadmeFile> |
| 29 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 30 | + <IncludeSymbols>true</IncludeSymbols> |
| 31 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 32 | + <NoPackageAnalysis>true</NoPackageAnalysis> |
| 33 | + <BuildOutputTargetFolder>tasks</BuildOutputTargetFolder> |
| 34 | + <PackageIcon>icon.png</PackageIcon> |
| 35 | + </PropertyGroup> |
| 36 | + |
| 37 | + <!-- Build time packages--> |
| 38 | + <ItemGroup> |
| 39 | + <PackageReference Include="Microsoft.Build.Framework" PrivateAssets="all" /> |
| 40 | + <PackageReference Include="Microsoft.Build.Utilities.Core" PrivateAssets="all" /> |
| 41 | + <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="all" /> |
| 42 | + </ItemGroup> |
| 43 | + |
| 44 | + <!-- Runtime packages --> |
| 45 | + <ItemGroup> |
| 46 | + <PackageReference Include="Microsoft.Bcl.AsyncInterfaces" PrivateAssets="all" /> |
| 47 | + <PackageReference Include="System.IO.Pipelines" PrivateAssets="all" /> |
| 48 | + <PackageReference Include="System.Text.Encodings.Web" PrivateAssets="all" /> |
| 49 | + <PackageReference Include="System.Text.Json" PrivateAssets="all" /> |
| 50 | + <PackageReference Include="YamlDotNet" PrivateAssets="all" GeneratePathProperty="true" /> |
| 51 | + <PackageReference Include="YamlDotNet.System.Text.Json" PrivateAssets="all" /> |
| 52 | + </ItemGroup> |
| 53 | + |
| 54 | + <ItemGroup> |
| 55 | + <None Include="$(OutputPath)/Microsoft.Bcl.AsyncInterfaces.dll" Pack="true" PackagePath="/tasks/netstandard2.0/" /> |
| 56 | + <None Include="$(OutputPath)/System.IO.Pipelines.dll" Pack="true" PackagePath="/tasks/netstandard2.0/" /> |
| 57 | + <None Include="$(OutputPath)/System.Text.Encodings.Web.dll" Pack="true" PackagePath="/tasks/netstandard2.0/" /> |
| 58 | + <None Include="$(OutputPath)/System.Text.Json.dll" Pack="true" PackagePath="/tasks/netstandard2.0/" /> |
| 59 | + <None Include="$(OutputPath)/YamlDotNet.dll" Pack="true" PackagePath="/tasks/netstandard2.0/" /> |
| 60 | + <None Include="$(OutputPath)/YamlDotNet.System.Text.Json.dll" Pack="true" PackagePath="/tasks/netstandard2.0/" /> |
| 61 | + <None Include="build/AggregateConfigBuildTask.targets" Pack="true" PackagePath="/build/AggregateConfigBuildTask.targets" /> |
| 62 | + <None Include="../ThirdPartyNotices.txt" Pack="true" PackagePath="/" /> |
| 63 | + <None Include="../../LICENSE" Pack="true" PackagePath="/licenses/"> |
| 64 | + <Link>licenses/LICENSE</Link> |
| 65 | + </None> |
| 66 | + <None Include="../../README.md" Pack="true" PackagePath="/docs/" /> |
| 67 | + <None Include="../../image/icon/icon_128.png" Pack="true" PackagePath="/icon.png" /> |
| 68 | + </ItemGroup> |
| 69 | + |
| 70 | +</Project> |
0 commit comments