Skip to content

Commit

Permalink
chore: prepare new release (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
BoBoBaSs84 authored Aug 26, 2024
2 parents 675b61d + 5ac6c18 commit 5eb18ae
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 27 deletions.
16 changes: 9 additions & 7 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
<Project>

<PropertyGroup>
<PropertyGroup Label="Versioning">
<VersionMajor>$([System.DateTime]::UtcNow.Year)</VersionMajor>
<VersionMinor>$([System.DateTime]::UtcNow.Month)</VersionMinor>
<VersionPatch>$([System.DateTime]::UtcNow.Day)</VersionPatch>
<VersionRevision>$([System.DateTime]::UtcNow.TimeOfDay.TotalMinutes.ToString("0"))</VersionRevision>
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch).$(VersionRevision)</VersionPrefix>
<VersionSuffix Condition="$(Configuration.Equals('Debug'))">Development</VersionSuffix>
<FileVersion>$(VersionMajor).$(VersionMinor).$(VersionPatch)</FileVersion>
</PropertyGroup>

<PropertyGroup>
<PropertyGroup Label="Technical">
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<AnalysisLevel>latest</AnalysisLevel>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
Expand All @@ -23,6 +24,7 @@
<GeneratedAssemblyInfoFile>Properties\AssemblyInfo.cs</GeneratedAssemblyInfoFile>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>latest</LangVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<Nullable>enable</Nullable>
<PlatformTarget>x64</PlatformTarget>
<Platforms>x64</Platforms>
Expand All @@ -33,15 +35,15 @@
</PropertyGroup>

<PropertyGroup Condition="!$(MSBuildProjectName.EndsWith('Tests'))">
<Authors>BoBoBaSs84</Authors>
<Company>https://github.com/BoBoBaSs84</Company>
<Copyright>Copyright © $(VersionMajor) BoBoBaSs84</Copyright>
<Author>BoBoBaSs84</Author>
<Authors>$(Author)</Authors>
<Company>https://github.com/$(Author)</Company>
<Copyright>Copyright © $([System.DateTime]::UtcNow.Year) $(Author)</Copyright>
<Description>As we all know: "Why did you change your password again? And why is it so long?"</Description>
<NeutralLanguage>en-US</NeutralLanguage>
<Product>$(AssemblyName)</Product>
<Title>$(AssemblyName)</Title>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/BoBoBaSs84/$(Product)</RepositoryUrl>
<RepositoryUrl>https://github.com/$(Author)/$(Product)</RepositoryUrl>
</PropertyGroup>

<PropertyGroup Condition="$(Configuration.Equals('Debug'))">
Expand Down
20 changes: 10 additions & 10 deletions QrCode.Generator.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,27 +3,27 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.8.34330.188
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{12439B47-309E-4CB7-8FF8-EF559D5EAB56}"
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{7E780644-C4DD-4E17-B2F5-B3426803E8A0}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QrCode.Generator", "src\QrCode.Generator\QrCode.Generator.csproj", "{596425AD-EF50-4C67-82EB-2391A0A6EF7D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{4D745F8D-9212-4CBC-8B84-1C6E762F8B3E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QrCode.GeneratorTests", "tests\QrCode.GeneratorTests\QrCode.GeneratorTests.csproj", "{B87BFC39-D7D6-4A84-9448-B43B3372EE5A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{1C62FFF5-586A-4424-B68A-ED285E5E1F5B}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
.gitignore = .gitignore
CODE_OF_CONDUCT.md = CODE_OF_CONDUCT.md
Directory.Build.props = Directory.Build.props
Directory.Build.targets = Directory.Build.targets
Directory.Packages.props = Directory.Packages.props
global.json = global.json
LICENSE = LICENSE
PublicKey.snk = PublicKey.snk
README.md = README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{7E780644-C4DD-4E17-B2F5-B3426803E8A0}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QrCode.Generator", "src\QrCode.Generator\QrCode.Generator.csproj", "{596425AD-EF50-4C67-82EB-2391A0A6EF7D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{4D745F8D-9212-4CBC-8B84-1C6E762F8B3E}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QrCode.GeneratorTests", "tests\QrCode.GeneratorTests\QrCode.GeneratorTests.csproj", "{B87BFC39-D7D6-4A84-9448-B43B3372EE5A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Expand Down
10 changes: 0 additions & 10 deletions global.json

This file was deleted.

0 comments on commit 5eb18ae

Please sign in to comment.