Skip to content

Commit 155c885

Browse files
author
shimat
committed
Updated release files
1 parent f010cc2 commit 155c885

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

nuget/OpenCvSharp-x64.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>OpenCvSharp-x64</id>
5-
<version>2.4.8.20140226</version>
5+
<version>2.4.8.20140305</version>
66
<title>OpenCvSharp x64</title>
77
<authors>shimat</authors>
88
<licenseUrl>http://www.gnu.org/licenses/lgpl-3.0.en.html</licenseUrl>
99
<projectUrl>https://github.com/shimat/opencvsharp</projectUrl>
1010
<iconUrl>http://opencvsharp.googlecode.com/files/Lenna.ico</iconUrl>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>OpenCV wrapper for .NET Framework</description>
13-
<releaseNotes>2.4.8 support</releaseNotes>
13+
<releaseNotes>Added C++ core and imgproc methods</releaseNotes>
1414
<copyright>Copyright 2008-2014</copyright>
1515
<tags>Image Processing OpenCV Wrapper FFI</tags>
1616
<frameworkAssemblies>

nuget/OpenCvSharp-x86.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>OpenCvSharp-x86</id>
5-
<version>2.4.8.20140226</version>
5+
<version>2.4.8.20140305</version>
66
<title>OpenCvSharp x86</title>
77
<authors>shimat</authors>
88
<licenseUrl>http://www.gnu.org/licenses/lgpl-3.0.en.html</licenseUrl>
99
<projectUrl>http://code.google.com/p/opencvsharp/</projectUrl>
1010
<iconUrl>http://opencvsharp.googlecode.com/files/Lenna.ico</iconUrl>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>OpenCV wrapper for .NET Framework</description>
13-
<releaseNotes>2.4.8 support</releaseNotes>
13+
<releaseNotes>Added C++ core and imgproc methods</releaseNotes>
1414
<copyright>Copyright 2008-2014</copyright>
1515
<tags>Image Processing OpenCV Wrapper FFI</tags>
1616
<frameworkAssemblies>

src/OpenCvSharp.ReleaseMaker/MainForm.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ namespace OpenCvSharp.ReleaseMaker
1515
/// </summary>
1616
public partial class MainForm : Form
1717
{
18+
private const string VSVersion = "2012";
19+
1820
/// <summary>
1921
/// Constructor
2022
/// </summary>
@@ -30,7 +32,7 @@ public MainForm()
3032
/// <param name="e"></param>
3133
private void MainForm_Load(object sender, EventArgs e)
3234
{
33-
textBox_Src.Text = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), @"Visual Studio 2013\Projects\OpenCvSharp");
35+
textBox_Src.Text = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), @"Visual Studio " + VSVersion + @"\Projects\OpenCvSharp");
3436
textBox_Dst.Text = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
3537
}
3638

0 commit comments

Comments
 (0)