Skip to content

Commit d74d0a9

Browse files
authored
chore: remove global.json (#102)
changes: - removed the `global.json` file - applied small fixes to `Directory.Build.props` file closes #101
2 parents 819ceed + acb848c commit d74d0a9

4 files changed

+2
-16
lines changed

BB84.Notifications.sln

-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1919
Directory.Build.targets = Directory.Build.targets
2020
Directory.Packages.props = Directory.Packages.props
2121
dotnet-releaser.toml = dotnet-releaser.toml
22-
global.json = global.json
2322
LICENSE = LICENSE
2423
PublicKey.snk = PublicKey.snk
2524
README.md = README.md

Directory.Build.props

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<VersionMajor>3</VersionMajor>
55
<VersionMinor>2</VersionMinor>
66
<VersionPatch>$([System.DateTime]::UtcNow.ToString("MMdd"))</VersionPatch>
7-
<VersionRevision>$([System.DateTime]::UtcNow.ToString("HHmm"))</VersionRevision>
7+
<VersionRevision>$([System.DateTime]::UtcNow.TimeOfDay.TotalMinutes.ToString("0"))</VersionRevision>
88
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch).$(VersionRevision)</VersionPrefix>
99
<VersionSuffix Condition="$(Configuration.Equals('Debug'))">Development</VersionSuffix>
1010
<FileVersion>$(VersionMajor).$(VersionMinor).$(VersionPatch)</FileVersion>
@@ -42,10 +42,9 @@
4242
<Copyright>Copyright © $([System.DateTime]::UtcNow.Year) BoBoBaSs84</Copyright>
4343
<Description>This package contains relevant abstractions and implementations for one- and two-way binding of properties, for notifications about changed properties, for notifications about changed collections and for the Relay Command Pattern for synchronous and asynchronous operations.</Description>
4444
<Product>BB84.Notifications</Product>
45-
<PublishRepositoryUrl>true</PublishRepositoryUrl>
4645
<RepositoryType>git</RepositoryType>
4746
<RepositoryUrl>https://github.com/BoBoBaSs84/BB84.Notifications</RepositoryUrl>
48-
<Title>BB84.Notifications</Title>
47+
<Title>$(AssemblyName)</Title>
4948
</PropertyGroup>
5049

5150
<PropertyGroup Condition="!$(MSBuildProjectName.EndsWith('Tests'))" Label="Package">

Directory.Build.targets

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<Project>
2-
32
<ItemGroup Condition=" '$(TargetFrameworkIdentifier)' == '.NETFramework' ">
43
<Using Remove="System.Net.Http" />
54
</ItemGroup>
6-
75
</Project>

global.json

-10
This file was deleted.

0 commit comments

Comments
 (0)