プロジェクト

全般

プロフィール

リビジョン 265

堀内7年以上前に追加

打ち上げ検索:営業担当・工事担当選択ラジオボタン追加
請求書データ作成:×ボタンでの終了不具合修正

差分を表示:

branches/src/ProcessManagement/ProcessManagement/Common/CommonVersion.cs
14 14
        /// <summary>
15 15
        /// 本体バージョン
16 16
        /// </summary>
17
        public static int s_SystemVersion = 74;
17
        public static int s_SystemVersion = 75;
18 18

  
19 19
        /// <summary>
20 20
        /// コピー・環境バージョン
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/RequestInput/FrmRequestInput.cs
59 59
        private bool m_ParentEnd = false;
60 60
        // *-----* 共通処理設定 *-----*
61 61

  
62
        private bool m_CloseingProcessOn = false;
62
        private bool m_CloseingProcessOn = true;
63 63

  
64 64
        private bool m_bChengeAns = false;
65 65

  
......
259 259
        /// <param name="e"></param>
260 260
        private void FrmRequestInput_FormClosing(object sender, FormClosingEventArgs e)
261 261
        {
262
            if (m_CloseingProcessOn) ClsExcute.BackProcess();
262
            // データが変更されている場合
263
            if ((m_bDirty == true) && (m_bEdit == true))
264
            {
265
                // 破棄確認メッセージ表示
266
                if (ShowMessageBox("データに変更があります、登録せずに終了してよろしいですか?。", "終了確認"
267
                                        , MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.No)
268
                {
269
                    e.Cancel = true;
270
                    return;
271
                }
272
            }
273

  
274
            if (m_CloseingProcessOn)
275
                ClsExcute.BackProcess();
263 276
        }
264 277
        #endregion
265 278

  
......
463 476
        /// <param name="e"></param>
464 477
        private void btnEnd_Click(object sender, EventArgs e)
465 478
        {
466
            // データが変更されている場合
467
            if ((m_bDirty == true)&&(m_bEdit == true ))
468
            {
469
                // 破棄確認メッセージ表示
470
                if (ShowMessageBox("データに変更があります、登録せずに終了してよろしいですか?。", "終了確認", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.No)
471
                {
472
                    return ;
473
                }
474
            }
475

  
476 479
            m_EndButton = DialogResult.Cancel;
477 480

  
478
            // 前プロセスに戻る
479
            ClsExcute.BackProcess();
481
            m_CloseingProcessOn = true;
480 482

  
481 483
            this.Close();
482

  
483 484
        }
484 485
        #endregion
485 486

  
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/SalesConfirm/FrmSalesConfirm.Designer.cs
28 28
        /// </summary>
29 29
        private void InitializeComponent()
30 30
        {
31
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
32
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
31
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
32
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
33
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
34
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
35
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
36
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
37
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
38 38
            this.label3 = new System.Windows.Forms.Label();
39 39
            this.dgvMaster = new System.Windows.Forms.DataGridView();
40 40
            this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
......
49 49
            this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
50 50
            this.btnEnd = new System.Windows.Forms.Button();
51 51
            this.groupBox1 = new System.Windows.Forms.GroupBox();
52
            this.radioButton2 = new System.Windows.Forms.RadioButton();
53
            this.radioButton1 = new System.Windows.Forms.RadioButton();
52 54
            this.comboBox1 = new System.Windows.Forms.ComboBox();
53 55
            this.lblTotal = new System.Windows.Forms.Label();
54 56
            this.label1 = new System.Windows.Forms.Label();
......
91 93
            | System.Windows.Forms.AnchorStyles.Left) 
92 94
            | System.Windows.Forms.AnchorStyles.Right)));
93 95
            this.dgvMaster.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
94
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
95
            dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Control;
96
            dataGridViewCellStyle8.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
97
            dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.WindowText;
98
            dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
99
            dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
100
            dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
101
            this.dgvMaster.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle8;
96
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
97
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
98
            dataGridViewCellStyle1.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
99
            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
100
            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
101
            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
102
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
103
            this.dgvMaster.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
102 104
            this.dgvMaster.ColumnHeadersHeight = 24;
103 105
            this.dgvMaster.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
104 106
            this.dgvMaster.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
......
127 129
            // 
128 130
            // Column1
129 131
            // 
130
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
131
            dataGridViewCellStyle9.Font = new System.Drawing.Font("Century", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
132
            this.Column1.DefaultCellStyle = dataGridViewCellStyle9;
132
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
133
            dataGridViewCellStyle2.Font = new System.Drawing.Font("Century", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
134
            this.Column1.DefaultCellStyle = dataGridViewCellStyle2;
133 135
            this.Column1.Frozen = true;
134 136
            this.Column1.HeaderText = "№";
135 137
            this.Column1.Name = "Column1";
......
158 160
            // 
159 161
            // Column4
160 162
            // 
161
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
162
            this.Column4.DefaultCellStyle = dataGridViewCellStyle10;
163
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
164
            this.Column4.DefaultCellStyle = dataGridViewCellStyle3;
163 165
            this.Column4.Frozen = true;
164 166
            this.Column4.HeaderText = "発 注 区 分";
165 167
            this.Column4.Name = "Column4";
......
169 171
            // 
170 172
            // Column3
171 173
            // 
172
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
173
            this.Column3.DefaultCellStyle = dataGridViewCellStyle11;
174
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
175
            this.Column3.DefaultCellStyle = dataGridViewCellStyle4;
174 176
            this.Column3.Frozen = true;
175 177
            this.Column3.HeaderText = "発 注 者 名";
176 178
            this.Column3.Name = "Column3";
......
180 182
            // 
181 183
            // Column5
182 184
            // 
183
            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
184
            dataGridViewCellStyle12.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
185
            this.Column5.DefaultCellStyle = dataGridViewCellStyle12;
185
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
186
            dataGridViewCellStyle5.Font = new System.Drawing.Font("Century", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
187
            this.Column5.DefaultCellStyle = dataGridViewCellStyle5;
186 188
            this.Column5.Frozen = true;
187 189
            this.Column5.HeaderText = "請求金額";
188 190
            this.Column5.Name = "Column5";
......
202 204
            // 
203 205
            // Column7
204 206
            // 
205
            dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
206
            this.Column7.DefaultCellStyle = dataGridViewCellStyle13;
207
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
208
            this.Column7.DefaultCellStyle = dataGridViewCellStyle6;
207 209
            this.Column7.Frozen = true;
208 210
            this.Column7.HeaderText = "部  署";
209 211
            this.Column7.Name = "Column7";
......
222 224
            // 
223 225
            // Column9
224 226
            // 
225
            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
226
            this.Column9.DefaultCellStyle = dataGridViewCellStyle14;
227
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
228
            this.Column9.DefaultCellStyle = dataGridViewCellStyle7;
227 229
            this.Column9.Frozen = true;
228 230
            this.Column9.HeaderText = "工事担当者";
229 231
            this.Column9.Name = "Column9";
......
249 251
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
250 252
            | System.Windows.Forms.AnchorStyles.Right)));
251 253
            this.groupBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
254
            this.groupBox1.Controls.Add(this.radioButton2);
255
            this.groupBox1.Controls.Add(this.radioButton1);
252 256
            this.groupBox1.Controls.Add(this.comboBox1);
253 257
            this.groupBox1.Controls.Add(this.lblTotal);
254 258
            this.groupBox1.Controls.Add(this.label1);
......
267 271
            this.groupBox1.TabIndex = 21;
268 272
            this.groupBox1.TabStop = false;
269 273
            // 
274
            // radioButton2
275
            // 
276
            this.radioButton2.AutoSize = true;
277
            this.radioButton2.BackColor = System.Drawing.Color.Transparent;
278
            this.radioButton2.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
279
            this.radioButton2.ForeColor = System.Drawing.Color.Black;
280
            this.radioButton2.Location = new System.Drawing.Point(652, 66);
281
            this.radioButton2.Name = "radioButton2";
282
            this.radioButton2.Size = new System.Drawing.Size(77, 20);
283
            this.radioButton2.TabIndex = 46;
284
            this.radioButton2.Text = "工 事";
285
            this.radioButton2.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
286
            this.radioButton2.UseVisualStyleBackColor = false;
287
            // 
288
            // radioButton1
289
            // 
290
            this.radioButton1.AutoSize = true;
291
            this.radioButton1.BackColor = System.Drawing.Color.Transparent;
292
            this.radioButton1.Checked = true;
293
            this.radioButton1.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
294
            this.radioButton1.ForeColor = System.Drawing.Color.Black;
295
            this.radioButton1.Location = new System.Drawing.Point(652, 46);
296
            this.radioButton1.Name = "radioButton1";
297
            this.radioButton1.Size = new System.Drawing.Size(77, 20);
298
            this.radioButton1.TabIndex = 45;
299
            this.radioButton1.TabStop = true;
300
            this.radioButton1.Text = "営 業";
301
            this.radioButton1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
302
            this.radioButton1.UseVisualStyleBackColor = false;
303
            this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
304
            // 
270 305
            // comboBox1
271 306
            // 
272 307
            this.comboBox1.BackColor = System.Drawing.Color.White;
......
276 311
            this.comboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
277 312
            this.comboBox1.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
278 313
            this.comboBox1.FormattingEnabled = true;
279
            this.comboBox1.Location = new System.Drawing.Point(422, 17);
314
            this.comboBox1.Location = new System.Drawing.Point(148, 52);
280 315
            this.comboBox1.Name = "comboBox1";
281 316
            this.comboBox1.Size = new System.Drawing.Size(150, 24);
282 317
            this.comboBox1.TabIndex = 32;
......
287 322
            this.lblTotal.BackColor = System.Drawing.Color.White;
288 323
            this.lblTotal.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
289 324
            this.lblTotal.Font = new System.Drawing.Font("Century", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
290
            this.lblTotal.Location = new System.Drawing.Point(148, 51);
325
            this.lblTotal.Location = new System.Drawing.Point(442, 14);
291 326
            this.lblTotal.Name = "lblTotal";
292 327
            this.lblTotal.Size = new System.Drawing.Size(200, 30);
293 328
            this.lblTotal.TabIndex = 22;
......
299 334
            this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
300 335
            this.label1.CausesValidation = false;
301 336
            this.label1.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
302
            this.label1.Location = new System.Drawing.Point(294, 16);
337
            this.label1.Location = new System.Drawing.Point(20, 51);
303 338
            this.label1.Name = "label1";
304 339
            this.label1.Size = new System.Drawing.Size(120, 27);
305 340
            this.label1.TabIndex = 41;
......
357 392
            this.label5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
358 393
            this.label5.CausesValidation = false;
359 394
            this.label5.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
360
            this.label5.Location = new System.Drawing.Point(926, 16);
395
            this.label5.Location = new System.Drawing.Point(737, 51);
361 396
            this.label5.Name = "label5";
362 397
            this.label5.Size = new System.Drawing.Size(120, 27);
363 398
            this.label5.TabIndex = 37;
......
373 408
            this.comboBox3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
374 409
            this.comboBox3.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
375 410
            this.comboBox3.FormattingEnabled = true;
376
            this.comboBox3.Location = new System.Drawing.Point(1054, 17);
411
            this.comboBox3.Location = new System.Drawing.Point(865, 52);
377 412
            this.comboBox3.Name = "comboBox3";
378 413
            this.comboBox3.Size = new System.Drawing.Size(194, 24);
379 414
            this.comboBox3.TabIndex = 36;
......
385 420
            this.label4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
386 421
            this.label4.CausesValidation = false;
387 422
            this.label4.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
388
            this.label4.Location = new System.Drawing.Point(588, 16);
423
            this.label4.Location = new System.Drawing.Point(314, 51);
389 424
            this.label4.Name = "label4";
390 425
            this.label4.Size = new System.Drawing.Size(120, 27);
391 426
            this.label4.TabIndex = 35;
......
401 436
            this.comboBox2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
402 437
            this.comboBox2.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
403 438
            this.comboBox2.FormattingEnabled = true;
404
            this.comboBox2.Location = new System.Drawing.Point(716, 17);
439
            this.comboBox2.Location = new System.Drawing.Point(442, 52);
405 440
            this.comboBox2.Name = "comboBox2";
406 441
            this.comboBox2.Size = new System.Drawing.Size(194, 24);
407 442
            this.comboBox2.TabIndex = 34;
......
414 449
            this.label8.CausesValidation = false;
415 450
            this.label8.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
416 451
            this.label8.ForeColor = System.Drawing.Color.White;
417
            this.label8.Location = new System.Drawing.Point(20, 51);
452
            this.label8.Location = new System.Drawing.Point(314, 14);
418 453
            this.label8.Name = "label8";
419 454
            this.label8.Size = new System.Drawing.Size(120, 30);
420 455
            this.label8.TabIndex = 33;
......
503 538
        private System.Windows.Forms.DataGridViewTextBoxColumn Column7;
504 539
        private System.Windows.Forms.DataGridViewTextBoxColumn Column8;
505 540
        private System.Windows.Forms.DataGridViewTextBoxColumn Column9;
541
        private System.Windows.Forms.RadioButton radioButton2;
542
        private System.Windows.Forms.RadioButton radioButton1;
506 543
    }
507 544
}
508 545

  
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/SalesConfirm/FrmSalesConfirm.cs
332 332
        }
333 333
        #endregion
334 334

  
335
        #region 営業・工事担当者変更
336
        /// <summary>
337
        /// 営業・工事担当者変更
338
        /// </summary>
339
        /// <param name="sender"></param>
340
        /// <param name="e"></param>
341
        private void radioButton_CheckedChanged(object sender, EventArgs e)
342
        {
343
            DisplayData();
344
        }
345
        #endregion
346

  
335 347
        #region グリッド指定セル計算処理
336 348
        /// <summary>
337 349
        /// グリッド指定セル計算処理
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/Request/SalesConfirm/FrmSalesConfirmAuxiliary.cs
315 315

  
316 316
                dgv.Rows.Clear();
317 317

  
318
                // ?w?b?_?[?S???????X
319
                if (radioButton1.Checked)
320
                    dgv.Columns[(int)GridColumn.ConstrPersonName].HeaderText = "?c??S????";
321
                else
322
                    dgv.Columns[(int)GridColumn.ConstrPersonName].HeaderText = "?H???S????";
323

  
318 324
                int SelComb = 0;
319 325
                int CntNo = 1;
320 326
                long lTotal = 0;
......
456 462
                sql.Append(" LEFT JOIN constructionbaseinfodetail C2");
457 463
                sql.AppendFormat(" ON C2.ConstructionCode = C1.ConstructionCode AND C2.DetailNo= {0}",
458 464
                                    (int)ConstructionBaseInfoDetail.DetailDataNo.OrderersName);
459
                sql.Append(" LEFT JOIN personinchargemaster D1 ON D1.PersonCode = C1.ConstructionPersonCode");
465
                sql.Append(" LEFT JOIN personinchargemaster D1");
466

  
467
                if (radioButton1.Checked)
468
                    sql.Append(" ON D1.PersonCode = C1.SalesPersonCode");
469
                else
470
                    sql.Append(" ON D1.PersonCode = C1.ConstructionPersonCode");
471
                
460 472
                sql.Append(" LEFT JOIN departmentmaster E1 ON E1.DepartmentCode = D1.DepartmentCode");
461 473

  
462 474
                sql.Append(" WHERE C1.ConstructionCode = A1.REQCONSTRUCTIONCODE");
branches/src/ProcessManagement/ProcessManagement/Properties/AssemblyInfo.cs
32 32
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を 
33 33
// 既定値にすることができます:
34 34
// [assembly: AssemblyVersion("1.0.*")]
35
[assembly: AssemblyVersion("1.0.0.74")]
36
[assembly: AssemblyFileVersion("1.0.0.74")]
35
[assembly: AssemblyVersion("1.0.0.75")]
36
[assembly: AssemblyFileVersion("1.0.0.75")]
37 37
// Log4netを使用する
38 38
[assembly: log4net.Config.XmlConfigurator(ConfigFile = @"log4net.config", Watch = true)]

他の形式にエクスポート: Unified diff