1
+ <Project Sdk="Microsoft.NET.Sdk">
2
+
3
+ <PropertyGroup>
4
+ <OutputType>WinExe</OutputType>
5
+ <TargetFramework>net5.0-windows</TargetFramework>
6
+ <RootNamespace>Minecraft_Launch_Script</RootNamespace>
7
+ <StartupObject>Sub Main</StartupObject>
8
+ <UseWindowsForms>true</UseWindowsForms>
9
+ <MyType>WindowsForms</MyType>
10
+ <ApplicationManifest>My Project\app.manifest</ApplicationManifest>
11
+ <ApplicationIcon>minecraft_94415.ico</ApplicationIcon>
12
+ <SignAssembly>true</SignAssembly>
13
+ <AssemblyOriginatorKeyFile>sahilbhandari.pfx</AssemblyOriginatorKeyFile>
14
+ <Version>1.0.0</Version>
15
+ <Authors>Sahil Bhandari</Authors>
16
+ <Description>Minecraft For Windows Trial Bypass.</Description>
17
+ <Copyright>Sahil Bhandari</Copyright>
18
+ <PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
19
+ <GeneratePackageOnBuild>false</GeneratePackageOnBuild>
20
+ </PropertyGroup>
21
+
22
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
23
+ <Optimize>true</Optimize>
24
+ <PlatformTarget>AnyCPU</PlatformTarget>
25
+ <WarningLevel>1</WarningLevel>
26
+ <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
27
+ </PropertyGroup>
28
+
29
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
30
+ <PlatformTarget>AnyCPU</PlatformTarget>
31
+ <Optimize>false</Optimize>
32
+ <WarningLevel>1</WarningLevel>
33
+ <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
34
+ </PropertyGroup>
35
+
36
+ <ItemGroup>
37
+ <Import Include="System.Data" />
38
+ <Import Include="System.Drawing" />
39
+ <Import Include="System.Windows.Forms" />
40
+ </ItemGroup>
41
+
42
+ <ItemGroup>
43
+ <Compile Update="My Project\Application.Designer.vb">
44
+ <DesignTime>True</DesignTime>
45
+ <AutoGen>True</AutoGen>
46
+ <DependentUpon>Application.myapp</DependentUpon>
47
+ </Compile>
48
+ <Compile Update="My Project\Resources.Designer.vb">
49
+ <DesignTime>True</DesignTime>
50
+ <AutoGen>True</AutoGen>
51
+ <DependentUpon>Resources.resx</DependentUpon>
52
+ </Compile>
53
+ <Compile Update="My Project\Settings.Designer.vb">
54
+ <DesignTimeSharedInput>True</DesignTimeSharedInput>
55
+ <AutoGen>True</AutoGen>
56
+ <DependentUpon>Settings.settings</DependentUpon>
57
+ </Compile>
58
+ </ItemGroup>
59
+
60
+ <ItemGroup>
61
+ <EmbeddedResource Update="My Project\Resources.resx">
62
+ <CustomToolNamespace>My.Resources</CustomToolNamespace>
63
+ <Generator>VbMyResourcesResXFileCodeGenerator</Generator>
64
+ <LastGenOutput>Resources.Designer.vb</LastGenOutput>
65
+ </EmbeddedResource>
66
+ </ItemGroup>
67
+
68
+ <ItemGroup>
69
+ <None Update="My Project\Application.myapp">
70
+ <Generator>MyApplicationCodeGenerator</Generator>
71
+ <LastGenOutput>Application.Designer.vb</LastGenOutput>
72
+ </None>
73
+ <None Update="My Project\Settings.settings">
74
+ <CustomToolNamespace>My</CustomToolNamespace>
75
+ <Generator>SettingsSingleFileGenerator</Generator>
76
+ <LastGenOutput>Settings.Designer.vb</LastGenOutput>
77
+ </None>
78
+ </ItemGroup>
79
+
80
+ </Project>
0 commit comments