Skip to content

Commit 6152cc2

Browse files
committed
Minor updates
1 parent ae667cd commit 6152cc2

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

src/OpenCvSharp.Gpu/StereoBM_GPU.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ static StereoBM_GPU()
7171
PInvokeHelper.DllImportError(e);
7272
throw;
7373
}
74-
catch (Exception e)
74+
catch (Exception)
7575
{
7676
throw;
7777
}

src/OpenCvSharp.ReleaseMaker/MainForm.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ private void button_Make_Click(object sender, EventArgs e)
114114
@"OpenCvSharp.UserInterface\bin\Release\OpenCvSharp.UserInterface.dll",
115115
//"OpenCvSharp.Gpu.dll",
116116
@"OpenCvSharp.DebuggerVisualizers\bin\Release\OpenCvSharp.DebuggerVisualizers.dll",
117-
//"OpenCvSharp.DebuggerVisualizers.dll",
118117
//"OpenCvSharpExtern.dll",
119118
};
120119

@@ -177,7 +176,6 @@ private void MakeBinaryPackage(string dir, string dirDst, string version)
177176
// OpenCvSharpExtern.dllを選択
178177
{
179178
string pfExtern = (pf == "x86") ? "Win32" : "x64";
180-
// 2010を標準添付
181179
{
182180
string externDir = Path.Combine(dirSrc, Path.Combine("Release", pfExtern));
183181
string externFile = Path.Combine(externDir, "OpenCvSharpExtern.dll");
@@ -188,8 +186,8 @@ private void MakeBinaryPackage(string dir, string dirDst, string version)
188186

189187
// テキストを選択
190188
{
191-
ZipEntry e1 = zf.AddFile(Path.Combine(dir, "LICENSE"));
192-
e1.FileName = Path.GetFileName("LICENSE");
189+
ZipEntry e1 = zf.AddFile(Path.Combine(dir, "LICENSE.txt"));
190+
e1.FileName = Path.GetFileName("LICENSE.txt");
193191
ZipEntry e2 = zf.AddFile(Path.Combine(dir, "README.md"));
194192
e2.FileName = Path.GetFileName("README.md");
195193
}

0 commit comments

Comments
 (0)