Skip to content
This repository was archived by the owner on Jul 15, 2023. It is now read-only.

Commit 01991e7

Browse files
Merge pull request #110 from SergeyTeplyakov/features/Release2015
Updated version info for upcoming release
2 parents 96fd288 + f88cd0d commit 01991e7

File tree

7 files changed

+34
-35
lines changed

7 files changed

+34
-35
lines changed

Microsoft.Research/ContractAdornments/Extension/source.extension.vsixmanifest

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Vsix xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="1.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2010">
33
<Identifier Id="ContractAdornments.MicrosoftResearch.2fb66ab7-53ec-479b-bd35-e9dd5be0426b">
44
<Name>Code Contracts Editor Extensions</Name>
55
<Author>Microsoft Research</Author>
6-
<Version>1.8.10107.10</Version>
6+
<Version>1.9.10709.0</Version>
77
<Description xml:space="preserve">Displays Code Contracts (when editing C#) in code, IntelliSense, and in metadata files.
88

99
Inheritance:
@@ -47,4 +47,4 @@ Displays contracts in Signature Help tool tips.</Description>
4747
<VsPackage>|%CurrentProject%|</VsPackage>
4848
<MefComponent>|%CurrentProject%|</MefComponent>
4949
</Content>
50-
</Vsix>
50+
</Vsix>

Microsoft.Research/ManagedContract.Setup/Microsoft.Contracts.nuspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
<metadata>
44
<id>Microsoft.Contracts</id>
55
<version>0.0.0.0</version>
6-
<authors>logozzo,mbarnett,maf,dannyvv</authors>
7-
<owners>logozzo,mbarnett,maf,dannyvv</owners>
6+
<authors>logozzo,mbarnett,maf,dannyvv,seteplia,sharwell</authors>
7+
<owners>logozzo,mbarnett,maf,dannyvv,seteplia</owners>
88
<projectUrl>http://codebox/contracts</projectUrl>
99
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1010
<description>This project brings the advantages of design-by-contract programming to all .NET programming languages. Programming with contracts means writing extra pre-conditions, post-conditions, and object invariants in your code.</description>
11+
<releaseNotes>https://github.com/Microsoft/CodeContracts/releases/v$version$</releaseNotes>
1112
</metadata>
1213
<files>
1314
<file src="**\*" />

Microsoft.Research/ManagedContract.Setup/VSIX/VS10.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Identifier Id="CodeContractsVSIX.MicrosoftResearch.990ACB05-1AAE-4fa6-A178-9BF28206012F">
44
<Name>Code Contracts Tools</Name>
55
<Author>Microsoft Research</Author>
6-
<Version>1.9.0629.42</Version>
6+
<Version>1.9.10709.0</Version>
77
<Description xml:space="preserve">Tools to instrument and statically analyze .NET code with CodeContracts</Description>
88
<Locale>1033</Locale>
99
<MoreInfoUrl>http://visualstudiogallery.msdn.microsoft.com/1ec7db13-3363-46c9-851f-1ce455f66970</MoreInfoUrl>

Microsoft.Research/ManagedContract.Setup/VSIX/VS11.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Version="1.9.0629.42" Id="CodeContractsVSIX.MicrosoftResearch.990ACB05-1AAE-4fa6-A178-9BF28206012F" Language="en" Publisher="Microsoft Research" />
4+
<Identity Version="1.9.10709.0" Id="CodeContractsVSIX.MicrosoftResearch.990ACB05-1AAE-4fa6-A178-9BF28206012F" Language="en" Publisher="Microsoft Research" />
55
<DisplayName>Code Contracts Tools</DisplayName>
66
<Description xml:space="preserve">Tools to instrument and statically analyze .NET code with CodeContracts</Description>
77
<MoreInfo>http://visualstudiogallery.msdn.microsoft.com/1ec7db13-3363-46c9-851f-1ce455f66970</MoreInfo>

Microsoft.Research/ManagedContract.Setup/VSIX/VS12.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Version="1.9.0629.42" Id="CodeContractsVSIX.MicrosoftResearch.990ACB05-1AAE-4fa6-A178-9BF28206012F" Language="en" Publisher="Microsoft Research" />
4+
<Identity Version="1.9.10709.0" Id="CodeContractsVSIX.MicrosoftResearch.990ACB05-1AAE-4fa6-A178-9BF28206012F" Language="en" Publisher="Microsoft Research" />
55
<DisplayName>Code Contracts Tools</DisplayName>
66
<Description xml:space="preserve">Tools to instrument and statically analyze .NET code with CodeContracts</Description>
77
<MoreInfo>http://visualstudiogallery.msdn.microsoft.com/1ec7db13-3363-46c9-851f-1ce455f66970</MoreInfo>
Lines changed: 22 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,24 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
3-
<Metadata>
4-
<Identity Version="1.8.10107.10" Id="CodeContractsVSIX.MicrosoftResearch.990ACB05-1AAE-4fa6-A178-9BF28206012F" Language="en" Publisher="Microsoft Research" />
5-
<DisplayName>Code Contracts Tools</DisplayName>
6-
<Description xml:space="preserve">Tools to instrument and statically analyze .NET code with CodeContracts</Description>
7-
<MoreInfo>http://visualstudiogallery.msdn.microsoft.com/1ec7db13-3363-46c9-851f-1ce455f66970</MoreInfo>
8-
<License>License.rtf</License>
9-
<Icon>codecontracts_SM.png</Icon>
10-
<PreviewImage>codecontracts_project.png</PreviewImage>
11-
</Metadata>
12-
<Installation InstalledByMsi="true" AllUsers="true" SystemComponent="false">
13-
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.IntegratedShell" />
14-
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.Pro" />
15-
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.Premium" />
16-
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.Ultimate" />
17-
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.VSWinExpress" />
18-
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.VPDExpress" />
19-
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.VWDExpress" />
20-
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.VSLS" />
21-
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.VSWinDesktopExpress" />
22-
</Installation>
23-
<Assets />
24-
</PackageManifest>
25-
26-
3+
<Metadata>
4+
<Identity Version="1.9.10709.0" Id="CodeContractsVSIX.MicrosoftResearch.990ACB05-1AAE-4fa6-A178-9BF28206012F" Language="en" Publisher="Microsoft Research" />
5+
<DisplayName>Code Contracts Tools</DisplayName>
6+
<Description xml:space="preserve">Tools to instrument and statically analyze .NET code with CodeContracts</Description>
7+
<MoreInfo>http://visualstudiogallery.msdn.microsoft.com/1ec7db13-3363-46c9-851f-1ce455f66970</MoreInfo>
8+
<License>License.rtf</License>
9+
<Icon>codecontracts_SM.png</Icon>
10+
<PreviewImage>codecontracts_project.png</PreviewImage>
11+
</Metadata>
12+
<Installation InstalledByMsi="true" AllUsers="true" SystemComponent="false">
13+
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.IntegratedShell" />
14+
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.Pro" />
15+
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.Premium" />
16+
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.Ultimate" />
17+
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.VSWinExpress" />
18+
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.VPDExpress" />
19+
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.VWDExpress" />
20+
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.VSLS" />
21+
<InstallationTarget Version="[14.0,15.0)" Id="Microsoft.VisualStudio.VSWinDesktopExpress" />
22+
</Installation>
23+
<Assets />
24+
</PackageManifest>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Warning: Automatically generated file. DO NOT EDIT
2-
// Generated at Wednesday, January 7, 2015 1:57:15 PM
2+
// Generated at Thursday, July 9, 2015 3:41:56 PM
33

44
using System.Reflection;
5-
[assembly: AssemblyVersion("1.8.10107.10")]
6-
[assembly: AssemblyFileVersion("1.8.10107.10")]
5+
[assembly: AssemblyVersion("1.9.10709.0")]
6+
[assembly: AssemblyFileVersion("1.9.10709.0")]
77
[assembly: AssemblyCompany("Microsoft Corporation")]
88
[assembly: AssemblyCopyright("(c) Microsoft Corporation. All rights reserved.")]
99

0 commit comments

Comments
 (0)