Skip to content

Commit

Permalink
change version
Browse files Browse the repository at this point in the history
  • Loading branch information
moberacker committed Jul 3, 2018
1 parent 2ff28a1 commit e8106c0
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Log4ALA/ConfigSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public class ConfigSettings
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT")}.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{System.Environment.UserName.ToLower()}.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{Environment.GetEnvironmentVariable("APPSETTINGS_SUFFIX")}.json", optional: false, reloadOnChange: true)
.AddJsonFile($"appsettings.{Environment.GetEnvironmentVariable("APPSETTINGS_SUFFIX")}.json", optional: true, reloadOnChange: true)
.AddEnvironmentVariables().Build());
#endif

Expand Down
4 changes: 2 additions & 2 deletions Log4ALA/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.2.2")]
[assembly: AssemblyFileVersion("2.2.2")]
[assembly: AssemblyVersion("2.2.3")]
[assembly: AssemblyFileVersion("2.2.3")]
2 changes: 1 addition & 1 deletion Log4ALATest.Core/Log4ALATest.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


<ItemGroup>
<PackageReference Include="Log4ALA" Version="2.2.2" />
<PackageReference Include="Log4ALA" Version="2.2.3" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions Log4ALATest/Log4ALATest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Log4ALA, Version=2.2.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Log4ALA.2.2.2\lib\net45\Log4ALA.dll</HintPath>
<Reference Include="Log4ALA, Version=2.2.3.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Log4ALA.2.2.3\lib\net45\Log4ALA.dll</HintPath>
</Reference>
<Reference Include="log4net, Version=1.2.15.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
<HintPath>..\packages\log4net.2.0.5\lib\net45-full\log4net.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion Log4ALATest/packages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Log4ALA" version="2.2.2" targetFramework="net452" />
<package id="Log4ALA" version="2.2.3" targetFramework="net452" />
<package id="log4net" version="2.0.5" targetFramework="net452" />
<package id="Microsoft.WindowsAzure.ConfigurationManager" version="3.1.0" targetFramework="net452" />
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net452" />
Expand Down
2 changes: 1 addition & 1 deletion NuGet/Log4ALA.Core/Log4ALA.core.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata minClientVersion="3.3.0">
<id>Log4ALA.Core</id>
<title>Log4ALA</title>
<version>2.2.2</version>
<version>2.2.3</version>
<authors>mob</authors>
<owners>mob</owners>
<projectUrl>https://ptv-logistics.github.io/Log4ALA/</projectUrl>
Expand Down
2 changes: 1 addition & 1 deletion NuGet/Log4ALA/Log4ALA.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata minClientVersion="3.3.0">
<id>Log4ALA</id>
<title>Log4ALA</title>
<version>2.2.2</version>
<version>2.2.3</version>
<authors>mob</authors>
<owners>mob</owners>
<projectUrl>https://ptv-logistics.github.io/Log4ALA/</projectUrl>
Expand Down
2 changes: 1 addition & 1 deletion NuGet/build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ REM %MSBUILD% build.proj /target:NuGetRestore
REM %MSBUILD% /p:Configuration=Release ..\Log4ALA.sln
REM %MSBUILD% build.proj /target:NuGetPack /property:Configuration=Release;RELEASE=true
REM PackageVersion=4.5.0;PatchVersion=0;PatchCoreVersion=0
%MSBUILD% build.proj /target:BuildAll /property:Configuration=Release;RELEASE=true;MajorVersion=2;MinorVersion=2;PatchVersion=2
%MSBUILD% build.proj /target:BuildAll /property:Configuration=Release;RELEASE=true;MajorVersion=2;MinorVersion=2;PatchVersion=3
pause
2 changes: 1 addition & 1 deletion NuGet/build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<PropertyGroup>
<MajorVersion Condition="$(MajorVersion) == ''">2</MajorVersion>
<MinorVersion Condition="$(MinorVersion) == ''">2</MinorVersion>
<PatchVersion Condition="$(PatchVersion) == ''">2</PatchVersion>
<PatchVersion Condition="$(PatchVersion) == ''">3</PatchVersion>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ The order of the appsettings loading strategy how the settings will be overwritt
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT")}.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{System.Environment.UserName.ToLower()}.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.{Environment.GetEnvironmentVariable("APPSETTINGS_SUFFIX")}.json", optional: false, reloadOnChange: true)
.AddJsonFile($"appsettings.{Environment.GetEnvironmentVariable("APPSETTINGS_SUFFIX")}.json", optional: true, reloadOnChange: true)
.AddEnvironmentVariables().Build());
```

Expand Down

0 comments on commit e8106c0

Please sign in to comment.