Commit fb09fe0a authored by Yiğit Yusuf Çılgı's avatar Yiğit Yusuf Çılgı
Browse files

Initial commit

parents
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{02393127-ECD3-4072-B6CD-1D3C0A9F3785}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>game2048</RootNamespace>
<AssemblyName>game2048</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
<FileAlignment>512</FileAlignment>
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>
</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include=".NETFramework,Version=v4.0,Profile=Client">
<Visible>False</Visible>
<ProductName>Microsoft .NET Framework 4 Client Profile %28x86 and x64%29</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
<Visible>False</Visible>
<ProductName>Windows Installer 3.1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<PublishUrlHistory>publish\</PublishUrlHistory>
<InstallUrlHistory />
<SupportUrlHistory />
<UpdateUrlHistory />
<BootstrapperUrlHistory />
<ErrorReportUrlHistory />
<FallbackCulture>en-US</FallbackCulture>
<VerifyUploadedFiles>false</VerifyUploadedFiles>
</PropertyGroup>
</Project>
\ No newline at end of file

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "game2048", "game2048.csproj", "{02393127-ECD3-4072-B6CD-1D3C0A9F3785}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x86 = Debug|x86
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{02393127-ECD3-4072-B6CD-1D3C0A9F3785}.Debug|x86.ActiveCfg = Debug|x86
{02393127-ECD3-4072-B6CD-1D3C0A9F3785}.Debug|x86.Build.0 = Debug|x86
{02393127-ECD3-4072-B6CD-1D3C0A9F3785}.Release|x86.ActiveCfg = Release|x86
{02393127-ECD3-4072-B6CD-1D3C0A9F3785}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName = ".NET Framework 4 Client Profile")]
2b1feceb898a8f46c1d7439aed495ce98c8ff2b8
D:\Phúc Hòa\laptrinh\game2048\bin\Debug\game2048.exe
D:\Phúc Hòa\laptrinh\game2048\bin\Debug\game2048.pdb
D:\Phúc Hòa\laptrinh\game2048\obj\x86\Debug\game2048.Properties.Resources.resources
D:\Phúc Hòa\laptrinh\game2048\obj\x86\Debug\game2048.csproj.GenerateResource.Cache
D:\Phúc Hòa\laptrinh\game2048\obj\x86\Debug\game2048.exe
D:\Phúc Hòa\laptrinh\game2048\obj\x86\Debug\game2048.pdb
D:\Phúc Hòa\laptrinh\game2048\obj\x86\Debug\game2048.Game2048.resources
C:\Users\phuchoa\Desktop\game2048.exe
C:\Users\phuchoa\Desktop\game2048.pdb
D:\Phúc Hòa\laptrinh\game2048\obj\x86\Debug\game2048.csprojResolveAssemblyReference.cache
C:\Users\batuhan\Downloads\game_2048_code_by_phuchoa3t\dll\obj\x86\Debug\game2048.exe
C:\Users\batuhan\Downloads\game_2048_code_by_phuchoa3t\dll\obj\x86\Debug\game2048.pdb
C:\Users\batuhan\Downloads\game_2048_code_by_phuchoa3t\dll\bin\Debug\game2048.exe
C:\Users\batuhan\Downloads\game_2048_code_by_phuchoa3t\dll\bin\Debug\game2048.pdb
C:\Users\batuhan\Downloads\game_2048_code_by_phuchoa3t\dll\obj\x86\Debug\game2048.csprojResolveAssemblyReference.cache
C:\Users\batuhan\Downloads\game_2048_code_by_phuchoa3t\dll\obj\x86\Debug\game2048.Game2048.resources
C:\Users\batuhan\Downloads\game_2048_code_by_phuchoa3t\dll\obj\x86\Debug\game2048.Properties.Resources.resources
C:\Users\batuhan\Downloads\game_2048_code_by_phuchoa3t\dll\obj\x86\Debug\game2048.csproj.GenerateResource.Cache
C:\Users\batuhan\Downloads\game_2048_code_by_phuchoa3t\game2048\obj\x86\Debug\game2048.exe
C:\Users\batuhan\Downloads\game_2048_code_by_phuchoa3t\game2048\obj\x86\Debug\game2048.pdb
C:\Users\batuhan\Downloads\game2048\game2048\obj\x86\Debug\game2048.exe
C:\Users\batuhan\Downloads\game2048\game2048\obj\x86\Debug\game2048.pdb
C:\Users\batuhan\Downloads\game2048\game2048\bin\Debug\game2048.exe
C:\Users\batuhan\Downloads\game2048\game2048\bin\Debug\game2048.pdb
C:\Users\batuhan\Downloads\game2048\game2048\obj\x86\Debug\game2048.csprojResolveAssemblyReference.cache
C:\Users\batuhan\Downloads\game2048\game2048\obj\x86\Debug\game2048.Game2048.resources
C:\Users\batuhan\Downloads\game2048\game2048\obj\x86\Debug\game2048.Properties.Resources.resources
C:\Users\batuhan\Downloads\game2048\game2048\obj\x86\Debug\game2048.csproj.GenerateResource.Cache
E:\Projects for code-projects\new\Game2048-master\bin\Debug\game2048.exe
E:\Projects for code-projects\new\Game2048-master\bin\Debug\game2048.pdb
E:\Projects for code-projects\new\Game2048-master\obj\x86\Debug\game2048.csprojResolveAssemblyReference.cache
E:\Projects for code-projects\new\Game2048-master\obj\x86\Debug\game2048.Game2048.resources
E:\Projects for code-projects\new\Game2048-master\obj\x86\Debug\game2048.Properties.Resources.resources
E:\Projects for code-projects\new\Game2048-master\obj\x86\Debug\game2048.csproj.GenerateResource.Cache
E:\Projects for code-projects\new\Game2048-master\obj\x86\Debug\game2048.csproj.CoreCompileInputs.cache
E:\Projects for code-projects\new\Game2048-master\obj\x86\Debug\game2048.exe
E:\Projects for code-projects\new\Game2048-master\obj\x86\Debug\game2048.pdb
C:\Users\Yigit Yusuf\Desktop\Game 2048\bin\Debug\game2048.exe
C:\Users\Yigit Yusuf\Desktop\Game 2048\bin\Debug\game2048.pdb
C:\Users\Yigit Yusuf\Desktop\Game 2048\obj\x86\Debug\game2048.csproj.AssemblyReference.cache
C:\Users\Yigit Yusuf\Desktop\Game 2048\obj\x86\Debug\game2048.Game2048.resources
C:\Users\Yigit Yusuf\Desktop\Game 2048\obj\x86\Debug\game2048.Properties.Resources.resources
C:\Users\Yigit Yusuf\Desktop\Game 2048\obj\x86\Debug\game2048.csproj.GenerateResource.cache
C:\Users\Yigit Yusuf\Desktop\Game 2048\obj\x86\Debug\game2048.csproj.CoreCompileInputs.cache
C:\Users\Yigit Yusuf\Desktop\Game 2048\obj\x86\Debug\game2048.exe
C:\Users\Yigit Yusuf\Desktop\Game 2048\obj\x86\Debug\game2048.pdb
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.0,Profile=Client", FrameworkDisplayName = ".NET Framework 4 Client Profile")]
  • Here the coding stuff is available which would be bugs-free. There should be people who really looking for help with coding and would able to grab it here. Thumbs up and continue with your wise recommendations how to quit a job here these are helping.

Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment