Skip to content

Commit 592b037

Browse files
author
bdimpe@gmail
committed
Merge branch 'publishbase' into publishinstaller
2 parents 47f76be + 9354a56 commit 592b037

File tree

932 files changed

+4307195
-59852
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

932 files changed

+4307195
-59852
lines changed

Base/Base.csproj

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="Current" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<!--Project was exported from assembly: C:\Users\Xbass\Desktop\Base.dll-->
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{78125AD1-C9F8-4FE9-9BDB-5033D5FA76CC}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AssemblyName>Base</AssemblyName>
10-
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
10+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
1111
<ApplicationVersion>1.0.0.0</ApplicationVersion>
1212
<FileAlignment>512</FileAlignment>
1313
<FileUpgradeFlags>
1414
</FileUpgradeFlags>
1515
<UpgradeBackupLocation>
1616
</UpgradeBackupLocation>
1717
<OldToolsVersion>3.5</OldToolsVersion>
18+
<TargetFrameworkProfile />
1819
</PropertyGroup>
1920
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2021
<PlatformTarget>x86</PlatformTarget>
@@ -25,6 +26,7 @@
2526
<DefineConstants>DEBUG;TRACE</DefineConstants>
2627
<ErrorReport>prompt</ErrorReport>
2728
<WarningLevel>4</WarningLevel>
29+
<Prefer32Bit>false</Prefer32Bit>
2830
</PropertyGroup>
2931
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3032
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -34,8 +36,13 @@
3436
<DefineConstants>TRACE</DefineConstants>
3537
<ErrorReport>prompt</ErrorReport>
3638
<WarningLevel>4</WarningLevel>
39+
<Prefer32Bit>false</Prefer32Bit>
3740
</PropertyGroup>
3841
<ItemGroup>
42+
<Compile Include="Extensions.cs" />
43+
<Compile Include="ZStatus.Designer.cs">
44+
<DependentUpon>ZStatus.cs</DependentUpon>
45+
</Compile>
3946
<Reference Include="System.Windows.Forms" />
4047
<Reference Include="System" />
4148
<Reference Include="System.Drawing" />
@@ -106,4 +113,4 @@
106113
</EmbeddedResource>
107114
</ItemGroup>
108115
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
109-
</Project>
116+
</Project>

Base/Base/Data_Classes/Archetype.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,11 +237,11 @@ public int CompareTo(object obj)
237237
public PopUp.PopupData PopInfo()
238238
{
239239
PopUp.PopupData popupData = new PopUp.PopupData();
240-
int index1 = popupData.Add((PopUp.Section) null);
240+
int index1 = popupData.Add(null);
241241
popupData.Sections[index1].Add(this.DisplayName, PopUp.Colors.Title, 1.25f, FontStyle.Bold, 0);
242242
popupData.Sections[index1].Add(this.DescShort, PopUp.Colors.Effect, 1f, FontStyle.Bold, 0);
243243
popupData.Sections[index1].Add(this.DescLong, PopUp.Colors.Text, 0.9f, FontStyle.Bold, 1);
244-
int index2 = popupData.Add((PopUp.Section) null);
244+
int index2 = popupData.Add(null);
245245
popupData.Sections[index2].Add("You can't change archetype once a build has been started.\nIf you want to pick a different archetype, you need to clear the current build and start a new one.", PopUp.Colors.Effect, 0.9f, FontStyle.Bold, 0);
246246
return popupData;
247247
}

0 commit comments

Comments
 (0)