Skip to content

Commit

Permalink
v1.13.1 push
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven-D-Foster committed Oct 19, 2023
1 parent a209a31 commit 75862ed
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ReleaseVersion>2.0.0</ReleaseVersion>
<ReleaseVersion>1.13.1</ReleaseVersion>
<Description>Misc command line helper utilities</Description>
<StartupObject>MaxRunSoftware.Utilities.Console.Program</StartupObject>
<ApplicationIcon>Icon.ico</ApplicationIcon>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ReleaseVersion>2.0.0</ReleaseVersion>
<ReleaseVersion>1.13.1</ReleaseVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<ReleaseVersion>2.0.0</ReleaseVersion>
<ReleaseVersion>1.13.1</ReleaseVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
Expand Down
4 changes: 2 additions & 2 deletions MaxRunSoftware.Utilities.sln
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Global
$0.DotNetNamingPolicy = $1
$1.DirectoryNamespaceAssociation = PrefixedHierarchical
$0.StandardHeader = $2
$2.Text = @/*\nCopyright (c) 2022 Max Run Software (dev@maxrunsoftware.com)\n\nLicensed under the Apache License, Version 2.0 (the "License");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an "AS IS" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/
$2.Text = @/*\nCopyright (c) 2023 Max Run Software (dev@maxrunsoftware.com)\n\nLicensed under the Apache License, Version 2.0 (the "License");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an "AS IS" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n*/
$0.VersionControlPolicy = $3
$0.TextStylePolicy = $4
$4.inheritsSet = null
Expand All @@ -56,6 +56,6 @@ Global
$6.FileWidth = 80
$6.TabsToSpaces = True
$6.scope = text/plain
version = 2.0.0
version = 1.13.1
EndGlobalSection
EndGlobal
4 changes: 2 additions & 2 deletions MaxRunSoftware.Utilities/MaxRunSoftware.Utilities.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ReleaseVersion>2.0.0</ReleaseVersion>
<ReleaseVersion>1.13.1</ReleaseVersion>
<Description>Various helper methods and functions</Description>
<PackageVersion>$(ReleaseVersion)</PackageVersion>
<Authors>Max Run Software</Authors>
Expand All @@ -16,7 +16,7 @@
<PackageProjectUrl>https://github.com/maxrunsoftware/huc</PackageProjectUrl>
<Summary>Various tools and helper functions</Summary>
<Title>Max Run Software Utilities</Title>
<Copyright>(c) Max Run Software 2022</Copyright>
<Copyright>(c) Max Run Software 2023</Copyright>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
</PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions MaxRunSoftware.Utilities/Version.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// Copyright (c) 2022 Max Run Software (dev@maxrunsoftware.com)
//
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//
// http://www.apache.org/licenses/LICENSE-2.0
//
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Expand All @@ -16,5 +16,5 @@ namespace MaxRunSoftware.Utilities;

public static class Version
{
public static string Value => "2.0.0";
public static string Value => "1.13.1";
}
2 changes: 1 addition & 1 deletion publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ if [[ $runZip = 1 ]]; then
zip -9 -j ./publish/huc-win.zip ./publish/win-x64/huc.exe
zip -9 -j ./publish/huc-osx.zip ./publish/osx-x64/huc
zip -9 -j ./publish/huc-linux.zip ./publish/linux-x64/huc
zip -9 -j ./publish/libs.zip ./MaxRunSoftware.Utilities.External/bin/Debug/net5.0/*.* -x "ref"
zip -9 -j ./publish/libs.zip ./MaxRunSoftware.Utilities.External/bin/Debug/net6.0/*.* -x "ref"
fi

if [[ $runNuGet = 1 ]]; then
Expand Down

0 comments on commit 75862ed

Please sign in to comment.