Skip to content

Commit

Permalink
Bumped the version.
Browse files Browse the repository at this point in the history
  • Loading branch information
lextm committed Jun 28, 2019
1 parent 8995daf commit 408659a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 213 deletions.
8 changes: 4 additions & 4 deletions SharpSnmpLib/SharpSnmpLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
<AssemblyOriginatorKeyFile>sharpsnmplib.snk</AssemblyOriginatorKeyFile>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">True</PublicSign>
<AssemblyOriginatorKeyMode>File</AssemblyOriginatorKeyMode>
<AssemblyVersion>11.1.0.0</AssemblyVersion>
<FileVersion>11.1.0.0</FileVersion>
<Version>11.1.0</Version>
<AssemblyVersion>11.2.0.0</AssemblyVersion>
<FileVersion>11.2.0.0</FileVersion>
<Version>11.2.0</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RuntimeIdentifier Condition=" '$(TargetFramework)' == 'net452' ">win</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19324-01" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)'=='netstandard1.3' OR '$(TargetFramework)'=='netcoreapp2.1'">
<PackageReference Include="System.ComponentModel.TypeConverter" Version="4.3.0" />
Expand Down
21 changes: 16 additions & 5 deletions release.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,28 @@ catch

Install-Module VSSetup -Scope CurrentUser -Force
Update-Module VSSetup
$instance = Get-VSSetupInstance -All
$instance =Get-VSSetupInstance -All | Select-VSSetupInstance -Latest
$installDir = $instance.installationPath
Write-Host "Found VS in " + $installDir
$msBuild = $installDir + '\MSBuild\15.0\Bin\MSBuild.exe'
$msBuild = $installDir + '\MSBuild\Current\Bin\MSBuild.exe'
if (![System.IO.File]::Exists($msBuild))
{
Write-Host "MSBuild doesn't exist. Exit."
exit 1
$msBuild = $installDir + '\MSBuild\15.0\Bin\MSBuild.exe'
if (![System.IO.File]::Exists($msBuild))
{
Write-Host "MSBuild doesn't exist. Exit."
exit 1
}
else
{
Write-Host "Likely on Windows with VS2017."
}
}
else
{
Write-Host "Likely on Windows with VS2019."
}

Write-Host "Likely on Windows."
$onWindows = $true
}

Expand Down
204 changes: 0 additions & 204 deletions sharpsnmplib.shfbproj

This file was deleted.

0 comments on commit 408659a

Please sign in to comment.