Skip to content

Commit

Permalink
Updated release files
Browse files Browse the repository at this point in the history
  • Loading branch information
shimat committed Mar 6, 2014
1 parent f010cc2 commit 155c885
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions nuget/OpenCvSharp-x64.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>OpenCvSharp-x64</id>
<version>2.4.8.20140226</version>
<version>2.4.8.20140305</version>
<title>OpenCvSharp x64</title>
<authors>shimat</authors>
<licenseUrl>http://www.gnu.org/licenses/lgpl-3.0.en.html</licenseUrl>
<projectUrl>https://github.com/shimat/opencvsharp</projectUrl>
<iconUrl>http://opencvsharp.googlecode.com/files/Lenna.ico</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>OpenCV wrapper for .NET Framework</description>
<releaseNotes>2.4.8 support</releaseNotes>
<releaseNotes>Added C++ core and imgproc methods</releaseNotes>
<copyright>Copyright 2008-2014</copyright>
<tags>Image Processing OpenCV Wrapper FFI</tags>
<frameworkAssemblies>
Expand Down
4 changes: 2 additions & 2 deletions nuget/OpenCvSharp-x86.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>OpenCvSharp-x86</id>
<version>2.4.8.20140226</version>
<version>2.4.8.20140305</version>
<title>OpenCvSharp x86</title>
<authors>shimat</authors>
<licenseUrl>http://www.gnu.org/licenses/lgpl-3.0.en.html</licenseUrl>
<projectUrl>http://code.google.com/p/opencvsharp/</projectUrl>
<iconUrl>http://opencvsharp.googlecode.com/files/Lenna.ico</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>OpenCV wrapper for .NET Framework</description>
<releaseNotes>2.4.8 support</releaseNotes>
<releaseNotes>Added C++ core and imgproc methods</releaseNotes>
<copyright>Copyright 2008-2014</copyright>
<tags>Image Processing OpenCV Wrapper FFI</tags>
<frameworkAssemblies>
Expand Down
4 changes: 3 additions & 1 deletion src/OpenCvSharp.ReleaseMaker/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ namespace OpenCvSharp.ReleaseMaker
/// </summary>
public partial class MainForm : Form
{
private const string VSVersion = "2012";

/// <summary>
/// Constructor
/// </summary>
Expand All @@ -30,7 +32,7 @@ public MainForm()
/// <param name="e"></param>
private void MainForm_Load(object sender, EventArgs e)
{
textBox_Src.Text = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), @"Visual Studio 2013\Projects\OpenCvSharp");
textBox_Src.Text = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), @"Visual Studio " + VSVersion + @"\Projects\OpenCvSharp");
textBox_Dst.Text = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
}

Expand Down

0 comments on commit 155c885

Please sign in to comment.