Skip to content

Commit

Permalink
UPDATE v0.2
Browse files Browse the repository at this point in the history
new builder
new payload
  • Loading branch information
Nyrotication committed Aug 12, 2018
1 parent 1a79356 commit a2e9316
Show file tree
Hide file tree
Showing 24 changed files with 1,104 additions and 348 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27703.2000
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Lime Downloader", "Lime Downloader\Lime Downloader.vbproj", "{5C7897BA-BC9D-445B-B71B-84C239889E23}"
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Lime Downloader v0.2", "Lime Downloader v0.2\Lime Downloader v0.2.vbproj", "{4EB369DA-72FF-4CD6-9CC7-4FCBF2891712}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5C7897BA-BC9D-445B-B71B-84C239889E23}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5C7897BA-BC9D-445B-B71B-84C239889E23}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5C7897BA-BC9D-445B-B71B-84C239889E23}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5C7897BA-BC9D-445B-B71B-84C239889E23}.Release|Any CPU.Build.0 = Release|Any CPU
{4EB369DA-72FF-4CD6-9CC7-4FCBF2891712}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4EB369DA-72FF-4CD6-9CC7-4FCBF2891712}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4EB369DA-72FF-4CD6-9CC7-4FCBF2891712}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4EB369DA-72FF-4CD6-9CC7-4FCBF2891712}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {D7B22557-AFBB-4904-9EBE-6963B8B0C834}
SolutionGuid = {C144EE3E-151F-4BFA-B603-5143D1E7F614}
EndGlobalSection
EndGlobal
12 changes: 12 additions & 0 deletions Lime Downloader/Builder/Lime Downloader v0.2/Helper.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Module Helper
Public rand As New Random()
Public Function Randomi(ByVal lenght As Integer) As String
Dim Chr As String = "qwertyuiopasdfghjklzxcvbnm"
Dim sb As New Text.StringBuilder()
For i As Integer = 1 To lenght
Dim idx As Integer = rand.Next(0, Chr.Length)
sb.Append(Chr.Substring(idx, 1))
Next
Return sb.ToString
End Function
End Module
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{5C7897BA-BC9D-445B-B71B-84C239889E23}</ProjectGuid>
<ProjectGuid>{4EB369DA-72FF-4CD6-9CC7-4FCBF2891712}</ProjectGuid>
<OutputType>WinExe</OutputType>
<StartupObject>Lime_Downloader.My.MyApplication</StartupObject>
<RootNamespace>Lime_Downloader</RootNamespace>
<AssemblyName>Lime Downloader</AssemblyName>
<StartupObject>Lime_Downloader_v0._2.My.MyApplication</StartupObject>
<RootNamespace>Lime_Downloader_v0._2</RootNamespace>
<AssemblyName>Lime Downloader v0.2</AssemblyName>
<FileAlignment>512</FileAlignment>
<MyType>WindowsForms</MyType>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
Expand All @@ -20,7 +20,7 @@
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<OutputPath>bin\Debug\</OutputPath>
<DocumentationFile>Lime Downloader.xml</DocumentationFile>
<DocumentationFile>Lime Downloader v0.2.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
Expand All @@ -30,7 +30,7 @@
<DefineTrace>true</DefineTrace>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DocumentationFile>Lime Downloader.xml</DocumentationFile>
<DocumentationFile>Lime Downloader v0.2.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup>
<PropertyGroup>
Expand All @@ -49,6 +49,9 @@
<ApplicationIcon>icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Cecil, Version=0.10.0.0, Culture=neutral, PublicKeyToken=50cebf1cceb9d05e, processorArchitecture=MSIL">
<HintPath>..\packages\Mono.Cecil.0.10.0\lib\net40\Mono.Cecil.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
Expand All @@ -72,11 +75,12 @@
<Import Include="System.Xml.Linq" />
</ItemGroup>
<ItemGroup>
<Compile Include="Form1.vb">
<Compile Include="Helper.vb" />
<Compile Include="MainForm.vb">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.vb">
<DependentUpon>Form1.vb</DependentUpon>
<Compile Include="MainForm.Designer.vb">
<DependentUpon>MainForm.vb</DependentUpon>
<SubType>Form</SubType>
</Compile>
<Compile Include="My Project\AssemblyInfo.vb" />
Expand All @@ -96,8 +100,8 @@
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.vb</DependentUpon>
<EmbeddedResource Include="MainForm.resx">
<DependentUpon>MainForm.vb</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="My Project\Resources.resx">
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
Expand All @@ -116,9 +120,7 @@
<CustomToolNamespace>My</CustomToolNamespace>
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
</None>
</ItemGroup>
<ItemGroup>
<None Include="Resources\Source.txt" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Content Include="icon.ico" />
Expand Down
126 changes: 126 additions & 0 deletions Lime Downloader/Builder/Lime Downloader v0.2/MainForm.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a2e9316

Please sign in to comment.