* unimarc

a. 팩스전송 완료.
 b. 마크목록 폼 작성중
  1. 엑셀반출 기능 추가중 사용 작업중
  2. 마크편집 폼 수정 중 (마크 반출 test프로젝트 진행완료, 본 프로젝트에 적용중. / 저장기능활성화 작업완료)
   2-1. 기존의 칸채우기에서 예상되지 못한 버그가 발생하여 칸채우기 숨김.
   2-2. 008태크 재배치 => TextBox에 적용완료. 변경사항 메모장으로 넘기는 작업 진행해야함.
   2-3. 현재 TODO : 저장기능

* ISBN 체크 프로그램 - ★작업완료★
 a. 현재 마크팀 배포완료. - 추후 수정사항발생시 수정할 것.

TODOLIST
1. 팩스로 전송될 엑셀파일 밑작업마무리 (입력될 파라미터만 적용하면 실사용가능)
This commit is contained in:
SeungHo Yang
2021-04-05 18:33:22 +09:00
parent 1c0d786a90
commit 57aedd13d4
24 changed files with 206 additions and 52 deletions

View File

@@ -51,6 +51,7 @@ namespace ISBN_Check_test
this.label2 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label();
this.button2 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button();
this.cb_api = new System.Windows.Forms.ComboBox(); this.cb_api = new System.Windows.Forms.ComboBox();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout(); this.SuspendLayout();
// //
@@ -174,7 +175,7 @@ namespace ISBN_Check_test
// label1 // label1
// //
this.label1.AutoSize = true; this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(659, 13); this.label1.Location = new System.Drawing.Point(631, 15);
this.label1.Name = "label1"; this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12); this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 4; this.label1.TabIndex = 4;
@@ -216,7 +217,7 @@ namespace ISBN_Check_test
// //
// button2 // button2
// //
this.button2.Location = new System.Drawing.Point(551, 9); this.button2.Location = new System.Drawing.Point(534, 9);
this.button2.Name = "button2"; this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(75, 23); this.button2.Size = new System.Drawing.Size(75, 23);
this.button2.TabIndex = 2; this.button2.TabIndex = 2;
@@ -234,16 +235,24 @@ namespace ISBN_Check_test
this.cb_api.TabIndex = 0; this.cb_api.TabIndex = 0;
this.cb_api.SelectedIndexChanged += new System.EventHandler(this.cb_api_SelectedIndexChanged); this.cb_api.SelectedIndexChanged += new System.EventHandler(this.cb_api_SelectedIndexChanged);
// //
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(720, 9);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(184, 23);
this.progressBar1.TabIndex = 7;
//
// Form1 // Form1
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(920, 618); this.ClientSize = new System.Drawing.Size(920, 618);
this.Controls.Add(this.label1);
this.Controls.Add(this.progressBar1);
this.Controls.Add(this.end_idx); this.Controls.Add(this.end_idx);
this.Controls.Add(this.start_idx); this.Controls.Add(this.start_idx);
this.Controls.Add(this.richTextBox1); this.Controls.Add(this.richTextBox1);
this.Controls.Add(this.label2); this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.dataGridView1); this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.button2); this.Controls.Add(this.button2);
this.Controls.Add(this.button1); this.Controls.Add(this.button1);
@@ -280,6 +289,7 @@ namespace ISBN_Check_test
private System.Windows.Forms.DataGridViewTextBoxColumn category; private System.Windows.Forms.DataGridViewTextBoxColumn category;
private System.Windows.Forms.DataGridViewTextBoxColumn sold_out; private System.Windows.Forms.DataGridViewTextBoxColumn sold_out;
private System.Windows.Forms.DataGridViewTextBoxColumn Column1; private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
private System.Windows.Forms.ProgressBar progressBar1;
} }
} }

View File

@@ -7,6 +7,7 @@ using System.Drawing;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Threading;
using System.Windows.Forms; using System.Windows.Forms;
namespace ISBN_Check_test namespace ISBN_Check_test
@@ -20,8 +21,9 @@ namespace ISBN_Check_test
} }
private void Form1_Load(object sender, EventArgs e) private void Form1_Load(object sender, EventArgs e)
{ {
string[] api_list = { "알라딘", "네이버" }; string[] api_list = { "알라딘", "네이버", "다음" };
cb_api.Items.AddRange(api_list); cb_api.Items.AddRange(api_list);
} }
private void button2_Click(object sender, EventArgs e) private void button2_Click(object sender, EventArgs e)
{ {
@@ -45,6 +47,12 @@ namespace ISBN_Check_test
int start = Convert.ToInt32(start_idx.Text) - 1; int start = Convert.ToInt32(start_idx.Text) - 1;
int end = Convert.ToInt32(end_idx.Text) - 1; int end = Convert.ToInt32(end_idx.Text) - 1;
progressBar1.Style = ProgressBarStyle.Continuous;
progressBar1.Minimum = start;
progressBar1.Maximum = end;
progressBar1.Step = 1;
progressBar1.Value = 0;
if (start_idx.Text != "1" || end_idx.Text != dataGridView1.Rows.Count.ToString()) { if (start_idx.Text != "1" || end_idx.Text != dataGridView1.Rows.Count.ToString()) {
start = Convert.ToInt32(start_idx.Text) - 1; start = Convert.ToInt32(start_idx.Text) - 1;
end = Convert.ToInt32(end_idx.Text) - 1; end = Convert.ToInt32(end_idx.Text) - 1;
@@ -58,6 +66,9 @@ namespace ISBN_Check_test
case 1: case 1:
Naver_API(dataGridView1, start, end); Naver_API(dataGridView1, start, end);
break; break;
case 2:
Daum_API(dataGridView1, start, end);
break;
} }
stopwatch.Stop(); stopwatch.Stop();
@@ -112,6 +123,7 @@ namespace ISBN_Check_test
query = Set_query(type, a); query = Set_query(type, a);
insert_By_Aladin(api.Aladin(query, type, param), a); insert_By_Aladin(api.Aladin(query, type, param), a);
process_Sub();
} }
} }
private void Naver_API(DataGridView gridview, int start, int end) private void Naver_API(DataGridView gridview, int start, int end)
@@ -179,13 +191,57 @@ namespace ISBN_Check_test
L_Array.Add(gridview.Rows[a].Cells["author"].Value.ToString()); L_Array.Add(gridview.Rows[a].Cells["author"].Value.ToString());
L_Array.Add(gridview.Rows[a].Cells["book_comp"].Value.ToString()); L_Array.Add(gridview.Rows[a].Cells["book_comp"].Value.ToString());
break; break;
} } // 필터 적용
string[] arrayType = L_type.ToArray(); string[] arrayType = L_type.ToArray();
string[] arrayValue = L_Array.ToArray(); string[] arrayValue = L_Array.ToArray();
string result = api.Naver(arrayValue, arrayType, param); string result = api.Naver(arrayValue, arrayType, param);
insert_By_Naver(result, a); insert_By_Naver(result, a);
process_Sub();
Thread.Sleep(700);
} }
} }
private void Daum_API(DataGridView gridview, int start, int end)
{
string[] param = { "title", "authors", "publisher", "isbn", "price",
"datetime", "status" };
string type = string.Empty;
string query = string.Empty;
API api = new API();
for(int a = start; a < end; a++)
{
if (gridview.Rows[a].DefaultCellStyle.BackColor == Color.Yellow)
continue;
else if (gridview.Rows[a].DefaultCellStyle.BackColor == Color.LightGray)
gridview.Rows[a].DefaultCellStyle.BackColor = Color.Empty;
switch (cb_filter.SelectedIndex)
{
case 0:
type = "title";
query = gridview.Rows[a].Cells["book_name"].Value.ToString();
break;
case 1:
type = "person";
query = gridview.Rows[a].Cells["author"].Value.ToString();
break;
case 2:
type = "publisher";
query = gridview.Rows[a].Cells["book_comp"].Value.ToString();
break;
}
string result = api.Daum(query, type, param);
richTextBox1.Text = result;
insert_By_Daum(result, a);
process_Sub();
}
}
private void process_Sub()
{
progressBar1.PerformStep();
}
string Set_query(string type, int idx) string Set_query(string type, int idx)
{ {
string result = string.Empty; string result = string.Empty;
@@ -305,11 +361,68 @@ namespace ISBN_Check_test
dataGridView1.Rows[row].Cells["Column1"].Value += string.Join("|", grid) + "|"; dataGridView1.Rows[row].Cells["Column1"].Value += string.Join("|", grid) + "|";
dataGridView1.Rows[row].DefaultCellStyle.BackColor = Color.LightGray; dataGridView1.Rows[row].DefaultCellStyle.BackColor = Color.LightGray;
} }
#endregion
if (sp_data.Length > 1) return; if (sp_data.Length > 1) return;
if (row > 0) { dataGridView1.Rows[row - 1].Selected = false; } if (row > 0) { dataGridView1.Rows[row - 1].Selected = false; }
dataGridView1.Rows[row].Selected = true; dataGridView1.Rows[row].Selected = true;
#endregion
bool[] chk = { false, false, false };
string book_name = dataGridView1.Rows[row].Cells["book_name"].Value.ToString();
string author = dataGridView1.Rows[row].Cells["author"].Value.ToString();
string book_comp = dataGridView1.Rows[row].Cells["book_comp"].Value.ToString();
string newstring = DateTime.ParseExact(grid[5], "yyyyMMdd", null).ToString("yyyy-MM-dd");
if (grid[0] == book_name) chk[0] = true;
if (grid[1].Contains(author) == true) chk[1] = true;
if (grid[2] == book_comp) chk[2] = true;
if (chk[0] == true && chk[1] == true && chk[2] == true)
{
dataGridView1.Rows[row].Cells["isbn"].Value = grid[3];
dataGridView1.Rows[row].Cells["price2"].Value = grid[4];
dataGridView1.Rows[row].Cells["pubDate"].Value = newstring;
dataGridView1.Rows[row].Cells["category"].Value = grid[6];
dataGridView1.Rows[row].Cells["sold_out"].Value = grid[7];
dataGridView1.Rows[row].DefaultCellStyle.BackColor = Color.Yellow;
}
}
void insert_By_Daum(string value, int row)
{
if (row > 0) { dataGridView1.Rows[row - 1].Selected = false; }
dataGridView1.Rows[row].Selected = true;
if (value == "") return;
string[] sp_data = value.Split('\n');
string[] grid = { "", "", "", "", "", "", "", "" };
for (int a = 0; a < sp_data.Length-1; a++)
{
string[] data = sp_data[a].Split('|');
grid[0] = data[0];
grid[1] = data[1];
grid[2] = data[2];
string[] tmp_isbn = data[3].Split(' ');
if (tmp_isbn.Length < 2)
grid[3] = data[3].Replace(" ", "");
else
grid[3] = tmp_isbn[1];
grid[4] = data[4];
grid[5] = data[5].Substring(0, data[5].IndexOf('T'));
grid[7] = data[6];
dataGridView1.Rows[row].Cells["Column1"].Value += string.Join("|", grid) + "|";
dataGridView1.Rows[row].DefaultCellStyle.BackColor = Color.LightGray;
}
if (sp_data.Length > 1) return;
if (row > 0) dataGridView1.Rows[row - 1].Selected = false;
dataGridView1.Rows[row].Selected = true;
bool[] chk = { false, false, false }; bool[] chk = { false, false, false };
string book_name = dataGridView1.Rows[row].Cells["book_name"].Value.ToString(); string book_name = dataGridView1.Rows[row].Cells["book_name"].Value.ToString();
@@ -330,7 +443,6 @@ namespace ISBN_Check_test
dataGridView1.Rows[row].Cells["sold_out"].Value = grid[7]; dataGridView1.Rows[row].Cells["sold_out"].Value = grid[7];
dataGridView1.Rows[row].DefaultCellStyle.BackColor = Color.Yellow; dataGridView1.Rows[row].DefaultCellStyle.BackColor = Color.Yellow;
} }
} }
private void dataGridView1_KeyDown(object sender, KeyEventArgs e) private void dataGridView1_KeyDown(object sender, KeyEventArgs e)
{ {
@@ -343,8 +455,16 @@ namespace ISBN_Check_test
sg.DataGrid_to_Delete(sender, e); sg.DataGrid_to_Delete(sender, e);
} }
if (e.KeyCode == Keys.Enter) { dataGridView1_CellDoubleClick(null, null); rowidx++; } if (e.KeyCode == Keys.Enter) { dataGridView1_CellDoubleClick(null, null); rowidx++; }
if (e.KeyCode == Keys.Up) { rowidx--; } if (e.KeyCode == Keys.Up) {
if (e.KeyCode == Keys.Down) { rowidx++; } rowidx--;
if (rowidx < 0)
rowidx = 0;
}
if (e.KeyCode == Keys.Down) {
rowidx++;
if (rowidx > dataGridView1.Rows.Count - 1)
rowidx = dataGridView1.Rows.Count - 1;
}
end_idx.Text = dataGridView1.Rows.Count.ToString(); end_idx.Text = dataGridView1.Rows.Count.ToString();
} }
private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e) private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
@@ -364,7 +484,7 @@ namespace ISBN_Check_test
private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e) private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{ {
if (dataGridView1.Rows[rowidx].Cells["Column1"].Value == null || if (dataGridView1.Rows[rowidx].Cells["Column1"].Value == null ||
dataGridView1.Rows[rowidx].Cells["Column1"].Value == "") { return; } dataGridView1.Rows[rowidx].Cells["Column1"].Value.ToString() == "") { return; }
Form2 f2 = new Form2(this); Form2 f2 = new Form2(this);
f2.row = rowidx; f2.row = rowidx;
f2.Call_API = cb_api.Text; f2.Call_API = cb_api.Text;
@@ -389,6 +509,10 @@ namespace ISBN_Check_test
"도서명 + 저자 + 출판사" }; "도서명 + 저자 + 출판사" };
cb_filter.Items.AddRange(naver); cb_filter.Items.AddRange(naver);
} }
else if (cb_api.SelectedIndex == 2) {
string[] daum = { "도서명", "저자", "출판사" };
cb_filter.Items.AddRange(daum);
}
} }
} }
} }

View File

@@ -173,13 +173,13 @@ namespace ISBN_Check_test
} }
return result; return result;
} }
public string Daum(string[] Query, string[] Param) public string Daum(string Query, string Type, string[] Param)
{ {
string result = string.Empty; string result = string.Empty;
// url생성 // url생성
string url = "https://dapi.kakao.com/v3/search/book"; string url = "https://dapi.kakao.com/v3/search/book";
string query = string.Format("{0}?query={1}&target={2}", url, Query[0], "title"); string query = string.Format("{0}?query={1}&target={2}&", url, Query, Type);
WebRequest request = WebRequest.Create(query); WebRequest request = WebRequest.Create(query);
string rKey = "e3935565b731a2a6f32880c90d76403a"; string rKey = "e3935565b731a2a6f32880c90d76403a";
@@ -310,6 +310,7 @@ namespace ISBN_Check_test
} }
} }
} }
((DataGridView)sender).Rows.Add();
} }
} }
} }

View File

@@ -66,9 +66,8 @@ namespace ISBN_Check_test
tb_book_comp.Text = f1.dataGridView1.Rows[row].Cells["book_comp"].Value.ToString(); tb_book_comp.Text = f1.dataGridView1.Rows[row].Cells["book_comp"].Value.ToString();
if (f1.dataGridView1.Rows[row].Cells["price"].Value != null) if (f1.dataGridView1.Rows[row].Cells["price"].Value != null)
{
tb_price.Text = f1.dataGridView1.Rows[row].Cells["price"].Value.ToString(); tb_price.Text = f1.dataGridView1.Rows[row].Cells["price"].Value.ToString();
}
else { tb_price.Text = ""; } else { tb_price.Text = ""; }
string data = f1.dataGridView1.Rows[row].Cells["Column1"].Value.ToString(); string data = f1.dataGridView1.Rows[row].Cells["Column1"].Value.ToString();
@@ -96,7 +95,7 @@ namespace ISBN_Check_test
else if (Call_API == "네이버") else if (Call_API == "네이버")
return DateTime.ParseExact(date, "yyyyMMdd", null).ToString("yyyy-MM-dd"); return DateTime.ParseExact(date, "yyyyMMdd", null).ToString("yyyy-MM-dd");
else else
return "NULL"; return date;
} }
private void same_chk() private void same_chk()
{ {
@@ -108,7 +107,7 @@ namespace ISBN_Check_test
tb_price.Text.Replace(",","") }; tb_price.Text.Replace(",","") };
for(int a= 0; a < dataGridView1.Rows.Count - 1; a++) for(int a= 0; a < dataGridView1.Rows.Count; a++)
{ {
int chk_idx = 0; int chk_idx = 0;
@@ -121,12 +120,13 @@ namespace ISBN_Check_test
if(dataGridView1.Rows[a].Cells["book_comp"].Value.ToString() == ori_data[2]) { if(dataGridView1.Rows[a].Cells["book_comp"].Value.ToString() == ori_data[2]) {
chk_idx++; chk_idx++;
} }
if (chk_idx >= 2) { if (chk_idx >= 2) {
int price = Convert.ToInt32(ori_data[4]);
int pay = Convert.ToInt32(dataGridView1.Rows[a].Cells["price"].Value.ToString()); int pay = Convert.ToInt32(dataGridView1.Rows[a].Cells["price"].Value.ToString());
int price = 0;
if (ori_data[4] != "")
price = Convert.ToInt32(ori_data[4]);
if(price-5000 <= pay && pay <= price + 5000) if (price - 5000 <= pay && pay <= price + 5000)
dataGridView1.Rows[a].DefaultCellStyle.BackColor = Color.Yellow; dataGridView1.Rows[a].DefaultCellStyle.BackColor = Color.Yellow;
else else
@@ -137,8 +137,7 @@ namespace ISBN_Check_test
} }
private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e) private void dataGridView1_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
{ {
if(e != null) { rowidx = e.RowIndex; }
if(e != null) { rowidx = e.RowIndex;}
string book_name = dataGridView1.Rows[rowidx].Cells["book_name"].Value.ToString(); string book_name = dataGridView1.Rows[rowidx].Cells["book_name"].Value.ToString();
string author = dataGridView1.Rows[rowidx].Cells["author"].Value.ToString(); string author = dataGridView1.Rows[rowidx].Cells["author"].Value.ToString();
string book_comp = dataGridView1.Rows[rowidx].Cells["book_comp"].Value.ToString(); string book_comp = dataGridView1.Rows[rowidx].Cells["book_comp"].Value.ToString();
@@ -169,8 +168,19 @@ namespace ISBN_Check_test
private void dataGridView1_KeyDown(object sender, KeyEventArgs e) private void dataGridView1_KeyDown(object sender, KeyEventArgs e)
{ {
if(e.KeyCode == Keys.Enter) { dataGridView1_CellDoubleClick(null, null); } if(e.KeyCode == Keys.Enter) { dataGridView1_CellDoubleClick(null, null); }
if (e.KeyCode == Keys.Up) { rowidx--; } if (e.KeyCode == Keys.Up) {
if (e.KeyCode == Keys.Down) { rowidx++; } rowidx--;
if (rowidx < 0)
rowidx = 0;
}
if (e.KeyCode == Keys.Down) {
rowidx++;
if (rowidx > dataGridView1.Rows.Count - 1)
rowidx = dataGridView1.Rows.Count - 1;
}
if (e.KeyCode == Keys.Escape) {
this.Close();
}
} }
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e) private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{ {

View File

@@ -32,16 +32,15 @@ namespace ISBN_Check_test
// 발행일 / 도서분류 / 재고 // 발행일 / 도서분류 / 재고
string[] param = { "title", "authors", "publisher", "isbn", "price", string[] param = { "title", "authors", "publisher", "isbn", "price",
"datetime", "status" }; "datetime", "status" };
string result = api.Daum(ArrayValue, param); // string result = api.Daum(ArrayValue, param);
richTextBox1.Text = result; // richTextBox1.Text = result;
// input_Grid(result);
input_Grid(result);
} }
private void input_Grid(string value) private void input_Grid(string value)
{ {
string[] sp_data = value.Split('|'); string[] sp_data = value.Split('|');
string[] grid = { "", "", "", "", "", "" }; string[] grid = { "", "", "", "", "", "", "" };
for (int a = 0; a < sp_data.Length; a++) for (int a = 0; a < sp_data.Length; a++)
{ {
@@ -59,7 +58,9 @@ namespace ISBN_Check_test
if (a % 7 == 5) { if (a % 7 == 5) {
sp_data[a] = sp_data[a].Substring(0, sp_data[a].IndexOf('T')); sp_data[a] = sp_data[a].Substring(0, sp_data[a].IndexOf('T'));
grid[5] = sp_data[a]; } // 출간일 grid[5] = sp_data[a]; } // 출간일
if (a % 7 == 6) { grid[6] = sp_data[a]; } // 판매여부 if (a % 7 == 6) { grid[6] = sp_data[a];
dataGridView1.Rows.Add(grid);
} // 판매여부
} }
} }
private void tb_book_name_KeyDown(object sender, KeyEventArgs e) private void tb_book_name_KeyDown(object sender, KeyEventArgs e)

View File

@@ -11,7 +11,7 @@
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion> <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic> <Deterministic>false</Deterministic>
<IsWebBootstrapper>false</IsWebBootstrapper> <IsWebBootstrapper>false</IsWebBootstrapper>
<PublishUrl>\\MSDN-SPECIAL\project_share\</PublishUrl> <PublishUrl>\\MSDN-SPECIAL\project_share\</PublishUrl>
<Install>true</Install> <Install>true</Install>

View File

@@ -16,7 +16,7 @@ namespace ISBN_Check_test
{ {
Application.EnableVisualStyles(); Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false); Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form3()); Application.Run(new Form1());
} }
} }
} }

View File

@@ -31,6 +31,6 @@ using System.Runtime.InteropServices;
// //
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를 // 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
// 기본값으로 할 수 있습니다. // 기본값으로 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")] // [assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")]

View File

@@ -21,7 +21,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>u4b91ibX7x96ug6Lf7TXkHYAuwQKg9nukj7Mbtu+STM=</dsig:DigestValue> <dsig:DigestValue>7aPJmNSvb0PU9QuIpstDY5FFkTJha0KgAda5cHJ/EmY=</dsig:DigestValue>
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>

View File

@@ -42,14 +42,14 @@
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>
<dependency> <dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ISBN_Check_test.exe" size="39936"> <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ISBN_Check_test.exe" size="42496">
<assemblyIdentity name="ISBN_Check_test" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> <assemblyIdentity name="ISBN_Check_test" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash> <hash>
<dsig:Transforms> <dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>JWof198lqXefS6pH4ig36S6GUjbUI/QvKFg5jbTmnbg=</dsig:DigestValue> <dsig:DigestValue>AdXvML1+7dhzkhOLrDfLzxFquifXgqKvhOlSZBPwTYs=</dsig:DigestValue>
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>
@@ -74,13 +74,13 @@
<dsig:DigestValue>R+Wg8QGvQVHX8T0ta/qbhH1bXkqY0fRnS3wBV3J0bN8=</dsig:DigestValue> <dsig:DigestValue>R+Wg8QGvQVHX8T0ta/qbhH1bXkqY0fRnS3wBV3J0bN8=</dsig:DigestValue>
</hash> </hash>
</file> </file>
<file name="ISBN_Check_test.pdb" size="79360"> <file name="ISBN_Check_test.pdb" size="83456">
<hash> <hash>
<dsig:Transforms> <dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>wvm1BlMSe9nAQYo7ZcoLVWdWr/+H8MmqJKiSr4t+aMo=</dsig:DigestValue> <dsig:DigestValue>SYt9hOkA4o8cJOF41b8GOJLRrSJx0Gc+TbRhd+J7F5o=</dsig:DigestValue>
</hash> </hash>
</file> </file>
</asmv1:assembly> </asmv1:assembly>

View File

@@ -21,7 +21,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>u4b91ibX7x96ug6Lf7TXkHYAuwQKg9nukj7Mbtu+STM=</dsig:DigestValue> <dsig:DigestValue>7aPJmNSvb0PU9QuIpstDY5FFkTJha0KgAda5cHJ/EmY=</dsig:DigestValue>
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>

View File

@@ -42,14 +42,14 @@
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>
<dependency> <dependency>
<dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ISBN_Check_test.exe" size="39936"> <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="ISBN_Check_test.exe" size="42496">
<assemblyIdentity name="ISBN_Check_test" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> <assemblyIdentity name="ISBN_Check_test" version="1.0.0.0" language="neutral" processorArchitecture="msil" />
<hash> <hash>
<dsig:Transforms> <dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>JWof198lqXefS6pH4ig36S6GUjbUI/QvKFg5jbTmnbg=</dsig:DigestValue> <dsig:DigestValue>AdXvML1+7dhzkhOLrDfLzxFquifXgqKvhOlSZBPwTYs=</dsig:DigestValue>
</hash> </hash>
</dependentAssembly> </dependentAssembly>
</dependency> </dependency>
@@ -74,13 +74,13 @@
<dsig:DigestValue>R+Wg8QGvQVHX8T0ta/qbhH1bXkqY0fRnS3wBV3J0bN8=</dsig:DigestValue> <dsig:DigestValue>R+Wg8QGvQVHX8T0ta/qbhH1bXkqY0fRnS3wBV3J0bN8=</dsig:DigestValue>
</hash> </hash>
</file> </file>
<file name="ISBN_Check_test.pdb" size="79360"> <file name="ISBN_Check_test.pdb" size="83456">
<hash> <hash>
<dsig:Transforms> <dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms> </dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
<dsig:DigestValue>wvm1BlMSe9nAQYo7ZcoLVWdWr/+H8MmqJKiSr4t+aMo=</dsig:DigestValue> <dsig:DigestValue>SYt9hOkA4o8cJOF41b8GOJLRrSJx0Gc+TbRhd+J7F5o=</dsig:DigestValue>
</hash> </hash>
</file> </file>
</asmv1:assembly> </asmv1:assembly>

Binary file not shown.

View File

@@ -22,18 +22,18 @@
"Entry" "Entry"
{ {
"MsmKey" = "8:_36AC4F62C92B6D0BCDD2C56761258591" "MsmKey" = "8:_36AC4F62C92B6D0BCDD2C56761258591"
"OwnerKey" = "8:_ACC6E81358D94BAA91B2EE876A585013" "OwnerKey" = "8:_DA8C774840A942BC81BFF0E6B6623E5B"
"MsmSig" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED"
} }
"Entry" "Entry"
{ {
"MsmKey" = "8:_8E5B8C9896AC806B09C2BF089A2B0DA2" "MsmKey" = "8:_8E5B8C9896AC806B09C2BF089A2B0DA2"
"OwnerKey" = "8:_ACC6E81358D94BAA91B2EE876A585013" "OwnerKey" = "8:_DA8C774840A942BC81BFF0E6B6623E5B"
"MsmSig" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED"
} }
"Entry" "Entry"
{ {
"MsmKey" = "8:_ACC6E81358D94BAA91B2EE876A585013" "MsmKey" = "8:_DA8C774840A942BC81BFF0E6B6623E5B"
"OwnerKey" = "8:_UNDEFINED" "OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED"
} }
@@ -46,7 +46,7 @@
"Entry" "Entry"
{ {
"MsmKey" = "8:_UNDEFINED" "MsmKey" = "8:_UNDEFINED"
"OwnerKey" = "8:_ACC6E81358D94BAA91B2EE876A585013" "OwnerKey" = "8:_DA8C774840A942BC81BFF0E6B6623E5B"
"MsmSig" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED"
} }
"Entry" "Entry"
@@ -112,6 +112,14 @@
"PrerequisitesLocation" = "2:1" "PrerequisitesLocation" = "2:1"
"Url" = "8:" "Url" = "8:"
"ComponentsUrl" = "8:" "ComponentsUrl" = "8:"
"Items"
{
"{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.7.2"
{
"Name" = "8:Microsoft .NET Framework 4.7.2 (x86 and x64)"
"ProductCode" = "8:.NETFramework,Version=v4.7.2"
}
}
} }
} }
} }
@@ -401,15 +409,15 @@
} }
"Shortcut" "Shortcut"
{ {
"{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_41A5DB557A064A2E94DBAB9AFCBAC511" "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_32CA64AF558A4FAEA0514A673174CC75"
{ {
"Name" = "8:ISBN_Check" "Name" = "8:ISBN 조회"
"Arguments" = "8:" "Arguments" = "8:"
"Description" = "8:" "Description" = "8:"
"ShowCmd" = "3:1" "ShowCmd" = "3:1"
"IconIndex" = "3:0" "IconIndex" = "3:0"
"Transitive" = "11:FALSE" "Transitive" = "11:FALSE"
"Target" = "8:_ACC6E81358D94BAA91B2EE876A585013" "Target" = "8:_DA8C774840A942BC81BFF0E6B6623E5B"
"Folder" = "8:_A66867392A5046CAB74023B14B8C3140" "Folder" = "8:_A66867392A5046CAB74023B14B8C3140"
"WorkingFolder" = "8:_945325C397F845FB86F255B5AAC3663E" "WorkingFolder" = "8:_945325C397F845FB86F255B5AAC3663E"
"Icon" = "8:_0D6062360C5F4D6BA7D1EBF485EEFF70" "Icon" = "8:_0D6062360C5F4D6BA7D1EBF485EEFF70"
@@ -814,7 +822,7 @@
} }
"ProjectOutput" "ProjectOutput"
{ {
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_ACC6E81358D94BAA91B2EE876A585013" "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_DA8C774840A942BC81BFF0E6B6623E5B"
{ {
"SourcePath" = "8:..\\ISBN_Check_test\\obj\\Debug\\ISBN_Check_test.exe" "SourcePath" = "8:..\\ISBN_Check_test\\obj\\Debug\\ISBN_Check_test.exe"
"TargetName" = "8:" "TargetName" = "8:"