-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #582 from GitTools/dependabot/nuget/src/Destructur…
…ama.Attributed-and-Serilog-4.0.0 Bump Destructurama.Attributed and Serilog in /src
- Loading branch information
Showing
4 changed files
with
134 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<LangVersion>8.0</LangVersion> | ||
<OutputType>Exe</OutputType> | ||
<AssemblyName>GitReleaseManager</AssemblyName> | ||
<TargetFrameworks>net6.0</TargetFrameworks> | ||
<PublishSingleFile>true</PublishSingleFile> | ||
<SelfContained>true</SelfContained> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
<Title>GitReleaseManager.Cli</Title> | ||
<Description>Create release notes in markdown given a milestone</Description> | ||
<IsPackable>false</IsPackable> | ||
<NoWarn>$(NoWarn);CA1707;</NoWarn> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\GitReleaseManager.Core\GitReleaseManager.Core.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CommandLineParser" Version="2.9.1" /> | ||
<PackageReference Include="Destructurama.Attributed" Version="3.1.0" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="Octokit" Version="12.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" /> | ||
<PackageReference Include="Serilog.Sinks.Debug" Version="2.0.0" PrivateAssets="All" /> | ||
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" /> | ||
<PackageReference Include="seriloganalyzer" Version="0.15.0" /> | ||
</ItemGroup> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<LangVersion>8.0</LangVersion> | ||
<OutputType>Exe</OutputType> | ||
<AssemblyName>GitReleaseManager</AssemblyName> | ||
<TargetFrameworks>net6.0</TargetFrameworks> | ||
<PublishSingleFile>true</PublishSingleFile> | ||
<SelfContained>true</SelfContained> | ||
<RuntimeIdentifier>win-x64</RuntimeIdentifier> | ||
<Title>GitReleaseManager.Cli</Title> | ||
<Description>Create release notes in markdown given a milestone</Description> | ||
<IsPackable>false</IsPackable> | ||
<NoWarn>$(NoWarn);CA1707;</NoWarn> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\GitReleaseManager.Core\GitReleaseManager.Core.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CommandLineParser" Version="2.9.1" /> | ||
<PackageReference Include="Destructurama.Attributed" Version="4.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="Octokit" Version="12.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" /> | ||
<PackageReference Include="Serilog.Sinks.Debug" Version="2.0.0" PrivateAssets="All" /> | ||
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" /> | ||
<PackageReference Include="seriloganalyzer" Version="0.15.0" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,50 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<!-- This two imports allow visual studio to transform text templates during building (1 for VS2019, and 1 for VS2017) --> | ||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v16.0\TextTemplating\Microsoft.TextTemplating.targets" Condition="Exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v16.0\TextTemplating\Microsoft.TextTemplating.targets')" /> | ||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v15.0\TextTemplating\Microsoft.TextTemplating.targets" Condition="Exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v15.0\TextTemplating\Microsoft.TextTemplating.targets')" /> | ||
<PropertyGroup> | ||
<LangVersion>8.0</LangVersion> | ||
<TargetFrameworks>net6.0;net7.0</TargetFrameworks> | ||
<Title>GitReleaseManager.Core</Title> | ||
<Description>Create release notes in markdown given a milestone</Description> | ||
<IsPackable>false</IsPackable> | ||
<NoWarn>$(NoWarn);CA1707;</NoWarn> | ||
<TransformOnBuild>true</TransformOnBuild> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<T4ReferencePath Include="$(VsIdePath)PublicAssemblies\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CommandLineParser" Version="2.9.1" /> | ||
<PackageReference Include="Destructurama.Attributed" Version="3.1.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="NGitLab" Version="6.39.0" /> | ||
<PackageReference Include="Octokit" Version="12.0.0" /> | ||
<PackageReference Include="Scriban" Version="5.9.0" /> | ||
<PackageReference Include="seriloganalyzer" Version="0.15.0" /> | ||
<PackageReference Include="YamlDotNet" Version="13.7.1" /> | ||
<PackageReference Include="AutoMapper" Version="12.0.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Update="Templates\ReleaseTemplates.g.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>ReleaseTemplates.tt</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="Templates\ReleaseTemplates.tt"> | ||
<Generator>TextTemplatingFileGenerator</Generator> | ||
<LastGenOutput>ReleaseTemplates.g.cs</LastGenOutput> | ||
</None> | ||
<None Include="Templates/**/*.sbn" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" /> | ||
</ItemGroup> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<!-- This two imports allow visual studio to transform text templates during building (1 for VS2019, and 1 for VS2017) --> | ||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v16.0\TextTemplating\Microsoft.TextTemplating.targets" Condition="Exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v16.0\TextTemplating\Microsoft.TextTemplating.targets')" /> | ||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v15.0\TextTemplating\Microsoft.TextTemplating.targets" Condition="Exists('$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v15.0\TextTemplating\Microsoft.TextTemplating.targets')" /> | ||
<PropertyGroup> | ||
<LangVersion>8.0</LangVersion> | ||
<TargetFrameworks>net6.0;net7.0</TargetFrameworks> | ||
<Title>GitReleaseManager.Core</Title> | ||
<Description>Create release notes in markdown given a milestone</Description> | ||
<IsPackable>false</IsPackable> | ||
<NoWarn>$(NoWarn);CA1707;</NoWarn> | ||
<TransformOnBuild>true</TransformOnBuild> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<T4ReferencePath Include="$(VsIdePath)PublicAssemblies\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CommandLineParser" Version="2.9.1" /> | ||
<PackageReference Include="Destructurama.Attributed" Version="4.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="NGitLab" Version="6.39.0" /> | ||
<PackageReference Include="Octokit" Version="12.0.0" /> | ||
<PackageReference Include="Scriban" Version="5.9.0" /> | ||
<PackageReference Include="seriloganalyzer" Version="0.15.0" /> | ||
<PackageReference Include="YamlDotNet" Version="13.7.1" /> | ||
<PackageReference Include="AutoMapper" Version="12.0.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Update="Templates\ReleaseTemplates.g.cs"> | ||
<DesignTime>True</DesignTime> | ||
<AutoGen>True</AutoGen> | ||
<DependentUpon>ReleaseTemplates.tt</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Update="Templates\ReleaseTemplates.tt"> | ||
<Generator>TextTemplatingFileGenerator</Generator> | ||
<LastGenOutput>ReleaseTemplates.g.cs</LastGenOutput> | ||
</None> | ||
<None Include="Templates/**/*.sbn" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" /> | ||
</ItemGroup> | ||
</Project> |
106 changes: 53 additions & 53 deletions
106
src/GitReleaseManager.Tool/GitReleaseManager.Tool.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,54 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<LangVersion>8.0</LangVersion> | ||
<OutputType>Exe</OutputType> | ||
<AssemblyName>GitReleaseManager</AssemblyName> | ||
|
||
<PackAsTool>true</PackAsTool> | ||
<TargetFrameworks>net6.0;net7.0</TargetFrameworks> | ||
<ToolCommandName>dotnet-gitreleasemanager</ToolCommandName> | ||
<PackageId>GitReleaseManager.Tool</PackageId> | ||
|
||
<Title>GitReleaseManager Tool</Title> | ||
<Authors>GitTools Contributors</Authors> | ||
<PackageProjectUrl>https://github.com/GitTools/GitReleaseManager</PackageProjectUrl> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageTags>github release notes create export</PackageTags> | ||
<Description>Tool for creating and exporting releases for software applications from online Version Control Systems</Description> | ||
<Copyright>Copyright (c) 2015 - Present - GitTools Contributors</Copyright> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageIcon>package_icon.png</PackageIcon> | ||
<PackageReleaseNotes>https://github.com/GitTools/GitReleaseManager/releases</PackageReleaseNotes> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/GitTools/GitReleaseManager.git</RepositoryUrl> | ||
<NoWarn>$(NoWarn);CA1707;</NoWarn> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="../GitReleaseManager.Cli/**/*.cs" Exclude="../GitReleaseManager.Cli/obj/**/*.*;../GitReleaseManager.Cli/bin/**/*.*" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\GitReleaseManager.Core\GitReleaseManager.Core.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CommandLineParser" Version="2.9.1" /> | ||
<PackageReference Include="Destructurama.Attributed" Version="3.1.0" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="NGitLab" Version="6.39.0" /> | ||
<PackageReference Include="Octokit" Version="12.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" /> | ||
<PackageReference Include="Serilog.Sinks.Debug" Version="2.0.0" PrivateAssets="All" /> | ||
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" /> | ||
<PackageReference Include="seriloganalyzer" Version="0.15.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="../../icons/package_icon.png"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
</ItemGroup> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<LangVersion>8.0</LangVersion> | ||
<OutputType>Exe</OutputType> | ||
<AssemblyName>GitReleaseManager</AssemblyName> | ||
|
||
<PackAsTool>true</PackAsTool> | ||
<TargetFrameworks>net6.0;net7.0</TargetFrameworks> | ||
<ToolCommandName>dotnet-gitreleasemanager</ToolCommandName> | ||
<PackageId>GitReleaseManager.Tool</PackageId> | ||
|
||
<Title>GitReleaseManager Tool</Title> | ||
<Authors>GitTools Contributors</Authors> | ||
<PackageProjectUrl>https://github.com/GitTools/GitReleaseManager</PackageProjectUrl> | ||
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance> | ||
<PackageTags>github release notes create export</PackageTags> | ||
<Description>Tool for creating and exporting releases for software applications from online Version Control Systems</Description> | ||
<Copyright>Copyright (c) 2015 - Present - GitTools Contributors</Copyright> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageIcon>package_icon.png</PackageIcon> | ||
<PackageReleaseNotes>https://github.com/GitTools/GitReleaseManager/releases</PackageReleaseNotes> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/GitTools/GitReleaseManager.git</RepositoryUrl> | ||
<NoWarn>$(NoWarn);CA1707;</NoWarn> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="../GitReleaseManager.Cli/**/*.cs" Exclude="../GitReleaseManager.Cli/obj/**/*.*;../GitReleaseManager.Cli/bin/**/*.*" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\GitReleaseManager.Core\GitReleaseManager.Core.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="CommandLineParser" Version="2.9.1" /> | ||
<PackageReference Include="Destructurama.Attributed" Version="4.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
<PrivateAssets>all</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="NGitLab" Version="6.39.0" /> | ||
<PackageReference Include="Octokit" Version="12.0.0" /> | ||
<PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" /> | ||
<PackageReference Include="Serilog.Sinks.Debug" Version="2.0.0" PrivateAssets="All" /> | ||
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0" /> | ||
<PackageReference Include="seriloganalyzer" Version="0.15.0" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="../../icons/package_icon.png"> | ||
<Pack>True</Pack> | ||
<PackagePath></PackagePath> | ||
</None> | ||
</ItemGroup> | ||
</Project> |