Skip to content

Commit 54de0c6

Browse files
committed
bump version to 0.1.2
1 parent 76eb997 commit 54de0c6

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CredentialProvider.Microsoft.VSIX/Microsoft.CredentialProvider.swixproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Import Project="packages\MicroBuild.Core.0.3.0\build\MicroBuild.Core.props" />
44

55
<PropertyGroup>
6-
<ProductVersion>0.1.1</ProductVersion>
6+
<ProductVersion>0.1.2</ProductVersion>
77
<ProjectGuid>4966bd57-3289-44a3-9698-f750a35b726b</ProjectGuid>
88
<SchemaVersion>2.0</SchemaVersion>
99
<OutputArchitecture>neutral</OutputArchitecture>

CredentialProvider.Microsoft.VSIX/Microsoft.CredentialProvider.swr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use vs
22

33
package name=Microsoft.CredentialProvider
4-
version=0.1.1
4+
version=0.1.2
55

66
folder InstallDir:\Common7\IDE\CommonExtensions\Microsoft\NuGet\Plugins\CredentialProvider.Microsoft
77
file source=$(PluginBinPath)\CredentialProvider.Microsoft.exe

CredentialProvider.Microsoft/CredentialProvider.Microsoft.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetFrameworks>netcoreapp2.1;net461</TargetFrameworks>
66
<LangVersion>latest</LangVersion>
77
<ApplicationIcon>helpericons.ico</ApplicationIcon>
8-
<Version>0.1.1</Version>
8+
<Version>0.1.2</Version>
99
</PropertyGroup>
1010

1111
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">

CredentialProvider.Microsoft/CredentialProvider.Microsoft.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>Microsoft.NuGet.CredentialProvider</id>
5-
<version>0.1.1$VersionSuffix$</version>
5+
<version>0.1.2$VersionSuffix$</version>
66
<title>Microsoft Credential Provider for NuGet</title>
77
<authors>Microsoft</authors>
88
<owners>microsoft,nugetvss</owners>

CredentialProvider.Microsoft/Program.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ internal static IList<ProductInfoHeaderValue> UserAgent
3232
{
3333
return new List<ProductInfoHeaderValue>()
3434
{
35-
new ProductInfoHeaderValue(Name ,Version),
35+
new ProductInfoHeaderValue(Name, Version),
3636
#if NETFRAMEWORK
3737
new ProductInfoHeaderValue("(netfx)"),
3838
#else
@@ -44,12 +44,12 @@ internal static IList<ProductInfoHeaderValue> UserAgent
4444

4545
private static Lazy<string> name = new Lazy<string>(() =>
4646
{
47-
return typeof(Program).GetTypeInfo().Assembly.GetCustomAttribute<AssemblyProductAttribute>().Product;
47+
return typeof(Program).GetTypeInfo().Assembly.GetCustomAttribute<AssemblyProductAttribute>()?.Product ?? "CredentialProvider.Microsoft";
4848
});
4949

5050
private static Lazy<string> version = new Lazy<string>(() =>
5151
{
52-
return typeof(Program).GetTypeInfo().Assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>().InformationalVersion;
52+
return typeof(Program).GetTypeInfo().Assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>()?.InformationalVersion ?? "";
5353
});
5454

5555
public static async Task<int> Main(string[] args)

0 commit comments

Comments
 (0)