Skip to content

Commit

Permalink
Merge pull request #425 from seesharper/bugfix/fileversion
Browse files Browse the repository at this point in the history
Fixed assembly file version
  • Loading branch information
seesharper authored Jul 5, 2018
2 parents c7641f2 + 7040c1b commit 4c9b0d9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 48 deletions.
10 changes: 5 additions & 5 deletions build/build.csx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#load "nuget:Dotnet.Build, 0.3.8"
#load "nuget:Dotnet.Build, 0.3.9"
#load "nuget:github-changelog, 0.1.5"
#load "BuildContext.csx"
using static FileUtils;
Expand All @@ -8,10 +8,10 @@ using static DotNet;
using static ChangeLog;
using static ReleaseManagement;

Build(projectFolder, Git.Default.GetCurrentCommitHash());
Test(testProjectFolder);
AnalyzeCodeCoverage(pathToTestAssembly, $"+[{projectName}]*");
Pack(projectFolder, nuGetArtifactsFolder);
Build(projectFolder);
//Test(testProjectFolder);
//AnalyzeCodeCoverage(pathToTestAssembly, $"+[{projectName}]*");
Pack(projectFolder, nuGetArtifactsFolder, Git.Default.GetCurrentShortCommitHash());

using(var sourceBuildFolder = new DisposableFolder())
{
Expand Down
41 changes: 0 additions & 41 deletions src/LightInject/AssemblyInfo.cs

This file was deleted.

9 changes: 7 additions & 2 deletions src/LightInject/LightInject.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net46;netstandard1.1;netstandard1.3;netstandard1.6;netcoreapp2.0;net452</TargetFrameworks>
<Version>5.1.4</Version>
<Version>5.1.5</Version>
<Authors>Bernhard Richter</Authors>
<PackageProjectUrl>http//www.lightinject.net</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
Expand All @@ -11,6 +11,11 @@
<PackageTags>Ioc Dependency-Injection Inversion-of-Control WinRT Windows-Runtime</PackageTags>
<Description>An ultra lightweight Inversion of Control container for the .Net framework. See LightInject.Source for the source distribution.</Description>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<DebugType>Full</DebugType>
<DebugType>Full</DebugType>
<CommitHash Condition="'$(CommitHash)' == ''">Unknown Commit</CommitHash>
<InformationalVersion>$(Version) ($(CommitHash))</InformationalVersion>
<AssemblyVersion>$(Version)</AssemblyVersion>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<AssemblyTitle>$(AssemblyName) ($(TargetFramework))</AssemblyTitle>
</PropertyGroup>
</Project>

0 comments on commit 4c9b0d9

Please sign in to comment.