-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #18 resolved; MultiSellEditor crash problem; update TargetFrame…
…work to .Net 4.8
- Loading branch information
Showing
7 changed files
with
65 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ Imports System.Runtime.InteropServices | |
|
||
' Review the values of the assembly attributes | ||
|
||
<Assembly: AssemblyTitle("L2ScriptMaker (C4 Support)")> | ||
<Assembly: AssemblyDescription("Tool for generate Lineage II server configuraion files. Contact: mailto:[email protected] Subject: L2ScriptMaker. Official site: http://l2scriptmaker.spaces.live.com/ Donation page: http://dragon.ur.ru/l2sm")> | ||
<Assembly: AssemblyTitle("L2ScriptMaker (C4 Support)")> | ||
<Assembly: AssemblyDescription("Tool for generate Lineage II server configuraion files")> | ||
<Assembly: AssemblyCompany("HellFire Lair")> | ||
<Assembly: AssemblyProduct("L2ScriptMaker")> | ||
<Assembly: AssemblyCopyright("Copyright © HellFire '2005")> | ||
|
@@ -34,4 +34,4 @@ Imports System.Runtime.InteropServices | |
' <Assembly: AssemblyVersion("1.0.*")> | ||
|
||
<Assembly: AssemblyVersion("4.0.53.*")> | ||
<Assembly: AssemblyFileVersion("4.0.53.2")> | ||
<Assembly: AssemblyFileVersion("4.0.53.3")> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<system.diagnostics> | ||
<sources> | ||
<!-- This section defines the logging configuration for My.Application.Log --> | ||
<source name="DefaultSource" switchName="DefaultSwitch"> | ||
<listeners> | ||
<add name="FileLog"/> | ||
<!-- Uncomment the below section to write to the Application Event Log --> | ||
<!--<add name="EventLog"/>--> | ||
</listeners> | ||
</source> | ||
</sources> | ||
<switches> | ||
<add name="DefaultSwitch" value="Information"/> | ||
</switches> | ||
<sharedListeners> | ||
<add name="FileLog" type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" initializeData="FileLogWriter"/> | ||
<!-- Uncomment the below section and replace APPLICATION_NAME with the name of your application to write to the Application Event Log --> | ||
<!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> --> | ||
</sharedListeners> | ||
</system.diagnostics> | ||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration> |