Skip to content

Commit f874c5f

Browse files
committed
update to 3.1
1 parent 1e4dedb commit f874c5f

File tree

216 files changed

+1152143
-40
lines changed

Some content is hidden

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

216 files changed

+1152143
-40
lines changed

.gitpod.Dockerfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM gitpod/workspace-dotnet-vnc
2+
USER root
3+
4+
RUN apt -y install gnupg ca-certificates
5+
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
6+
RUN echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
7+
RUN apt -y update
8+
RUN apt -y install mono-devel
9+
10+
RUN wget -q https://packages.microsoft.com/config/ubuntu/18.04/packages-microsoft-prod.deb && \
11+
dpkg -i packages-microsoft-prod.deb && rm -rf packages-microsoft-prod.deb && \
12+
add-apt-repository universe && \
13+
apt-get update && apt-get -y -o APT::Install-Suggests="true" install dotnet-sdk-3.1 && \
14+
rm -rf /var/lib/apt/lists/*;
15+
16+
USER gitpod
17+
18+
RUN npm install -y -g @angular/cli

.gitpod.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
tasks:
2+
- init: echo "Workspace Ready."
3+
image:
4+
file: .gitpod.Dockerfile

LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.

MigratedCode/HelloWorld1/HelloWorld.sln

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 15
3-
VisualStudioVersion = 15.0.27130.2024
3+
VisualStudioVersion = 15.0.27703.2026
44
MinimumVisualStudioVersion = 10.0.40219.1
5-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HelloWorld", "HelloWorld.csproj", "{4D39AAAA-0D8C-4535-A7C0-FC5FB7E04A21}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloWorld", "helloworld\HelloWorld.csproj", "{4D39AAAA-0D8C-4535-A7C0-FC5FB7E04A21}"
6+
EndProject
7+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Stubs", "Stubs\Stubs.csproj", "{D85524E2-748A-4582-848D-AB96F24EC830}"
68
EndProject
79
Global
810
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -20,11 +22,18 @@ Global
2022
{4D39AAAA-0D8C-4535-A7C0-FC5FB7E04A21}.Release|Any CPU.Build.0 = Release|Any CPU
2123
{4D39AAAA-0D8C-4535-A7C0-FC5FB7E04A21}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
2224
{4D39AAAA-0D8C-4535-A7C0-FC5FB7E04A21}.Release|Mixed Platforms.Build.0 = Release|Any CPU
25+
{D85524E2-748A-4582-848D-AB96F24EC830}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26+
{D85524E2-748A-4582-848D-AB96F24EC830}.Debug|Any CPU.Build.0 = Debug|Any CPU
27+
{D85524E2-748A-4582-848D-AB96F24EC830}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
28+
{D85524E2-748A-4582-848D-AB96F24EC830}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
29+
{D85524E2-748A-4582-848D-AB96F24EC830}.Release|Any CPU.ActiveCfg = Release|Any CPU
30+
{D85524E2-748A-4582-848D-AB96F24EC830}.Release|Any CPU.Build.0 = Release|Any CPU
31+
{D85524E2-748A-4582-848D-AB96F24EC830}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
32+
{D85524E2-748A-4582-848D-AB96F24EC830}.Release|Mixed Platforms.Build.0 = Release|Any CPU
2333
EndGlobalSection
2434
GlobalSection(SolutionProperties) = preSolution
2535
HideSolutionNode = FALSE
2636
EndGlobalSection
2737
GlobalSection(ExtensibilityGlobals) = postSolution
28-
SolutionGuid = {43502CF5-E983-46CF-ACE9-5991B3388FBE}
2938
EndGlobalSection
3039
EndGlobal
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
namespace Mobilize.Web.Extensions
2+
{
3+
4+
public static class ContainerControlExtensions
5+
{
6+
7+
public static Stub._System.Windows.Forms.
8+
ContainerControlEx Properties(this Mobilize.Web.ContainerControl containerControl)
9+
{
10+
return new Stub._System.Windows.Forms.ContainerControlEx();
11+
}
12+
13+
}
14+
15+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
namespace Mobilize.Web.Extensions
2+
{
3+
4+
public static class ControlExtensions
5+
{
6+
7+
public static void SuspendLayout(this Mobilize.Web.Control control)
8+
{
9+
}
10+
11+
public static void ResumeLayout(this Mobilize.Web.Control control, bool performLayout)
12+
{
13+
}
14+
15+
public static void PerformLayout(this Mobilize.Web.Control control)
16+
{
17+
}
18+
19+
}
20+
21+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
namespace Mobilize.Web.Extensions
2+
{
3+
4+
public static class FormExtensions
5+
{
6+
7+
public static Stub._System.Windows.Forms.FormEx Properties(this Mobilize.Web.Form form)
8+
{
9+
return new Stub._System.Windows.Forms.FormEx();
10+
}
11+
12+
}
13+
14+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("Stubs")]
9+
[assembly: AssemblyProduct("Stubs")]
10+
[assembly: AssemblyVersion("1.0.0.0")]
11+
[assembly: AssemblyFileVersion("1.0.0.0")]
12+
13+
namespace Stubs
14+
{
15+
/// <summary>
16+
/// This class is used to easily identify the library
17+
/// </summary>
18+
public class AssemblyIdentifier
19+
{
20+
public string Name => typeof(AssemblyIdentifier).Assembly.GetName().Name;
21+
}
22+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<TypeScriptToolsVersion>2.5</TypeScriptToolsVersion>
6+
<AssemblyName>Stubs</AssemblyName>
7+
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
8+
<LangVersion>7.3</LangVersion>
9+
</PropertyGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="Microsoft.Extensions.PlatformAbstractions" Version="1.1.0" />
13+
<PackageReference Include="Microsoft.VisualBasic" Version="10.2.0" />
14+
<PackageReference Include="Mobilize.Extensions.Logging.RollingFile" Version="2.1.1-rc0027" />
15+
<PackageReference Include="Mobilize.Web.BundleBasic.All" Version="5.0.6-rc0067"/>
16+
<PackageReference Include="Mobilize.VBUC.Helpers.All" Version="8.1.0-rc11540"/>
17+
</ItemGroup>
18+
</Project>
19+
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
namespace Stub._System.Windows.Forms
2+
{
3+
4+
public class Application
5+
{
6+
7+
public static void EnableVisualStyles()
8+
{
9+
}
10+
11+
public static void SetCompatibleTextRenderingDefault(bool defaultValue)
12+
{
13+
}
14+
15+
}
16+
17+
}

0 commit comments

Comments
 (0)