Skip to content
This repository has been archived by the owner on Oct 9, 2020. It is now read-only.

Commit

Permalink
优化代码
Browse files Browse the repository at this point in the history
  • Loading branch information
MonoLogueChi committed Apr 18, 2018
1 parent 9230e45 commit 146f9cc
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 8 deletions.
12 changes: 12 additions & 0 deletions Drcom.sln
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,25 @@ EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3539E53A-BDC5-4727-850F-C704B3C13A78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3539E53A-BDC5-4727-850F-C704B3C13A78}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3539E53A-BDC5-4727-850F-C704B3C13A78}.Debug|x64.ActiveCfg = Debug|Any CPU
{3539E53A-BDC5-4727-850F-C704B3C13A78}.Debug|x64.Build.0 = Debug|Any CPU
{3539E53A-BDC5-4727-850F-C704B3C13A78}.Debug|x86.ActiveCfg = Debug|Any CPU
{3539E53A-BDC5-4727-850F-C704B3C13A78}.Debug|x86.Build.0 = Debug|Any CPU
{3539E53A-BDC5-4727-850F-C704B3C13A78}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3539E53A-BDC5-4727-850F-C704B3C13A78}.Release|Any CPU.Build.0 = Release|Any CPU
{3539E53A-BDC5-4727-850F-C704B3C13A78}.Release|x64.ActiveCfg = Release|Any CPU
{3539E53A-BDC5-4727-850F-C704B3C13A78}.Release|x64.Build.0 = Release|Any CPU
{3539E53A-BDC5-4727-850F-C704B3C13A78}.Release|x86.ActiveCfg = Release|x86
{3539E53A-BDC5-4727-850F-C704B3C13A78}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 0 additions & 2 deletions Drcom/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
<appSettings>
</appSettings>
</configuration>
24 changes: 21 additions & 3 deletions Drcom/Drcom.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
<TargetFrameworkProfile>
</TargetFrameworkProfile>
<IsWebBootstrapper>false</IsWebBootstrapper>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
<PublishUrl>C:\Users\MonoLogueChi\Desktop\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
Expand All @@ -26,8 +28,8 @@
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>2</ApplicationRevision>
<ApplicationVersion>0.0.0.2</ApplicationVersion>
<ApplicationRevision>3</ApplicationRevision>
<ApplicationVersion>0.0.0.3</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
Expand Down Expand Up @@ -87,6 +89,23 @@
<PropertyGroup>
<NoWin32Manifest>true</NoWin32Manifest>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<Optimize>true</Optimize>
<PlatformTarget>x86</PlatformTarget>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.configuration" />
Expand All @@ -110,7 +129,6 @@
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</ApplicationDefinition>
<Compile Include="net\md5.cs" />
<Compile Include="Settings.cs" />
<Page Include="MainWindow.xaml">
<Generator>MSBuild:Compile</Generator>
Expand Down
6 changes: 3 additions & 3 deletions Drcom/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("XXWhite")]
[assembly: AssemblyProduct("Drcom")]
[assembly: AssemblyCopyright("Copyright © 2018")]
[assembly: AssemblyCopyright("Copyright © 2018 MonoLogueChi")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down Expand Up @@ -51,7 +51,7 @@
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.1.0.2")]
[assembly: AssemblyFileVersion("0.1.0.2")]
[assembly: AssemblyVersion("0.1.0.5")]
[assembly: AssemblyFileVersion("0.1.0.5")]
[assembly: NeutralResourcesLanguage("")]

0 comments on commit 146f9cc

Please sign in to comment.