Skip to content

Commit 83d79c6

Browse files
committed
Initial commit
0 parents  commit 83d79c6

7 files changed

Lines changed: 479 additions & 0 deletions

File tree

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
*.orig
2+
*.dll
3+
*.userprefs
4+
[Bb]in/
5+
[Oo]bj/
6+
*.suo
7+
*.csproj.user
8+
.vs/

DMPModpackUpdater.sln

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DMPModpackUpdater", "DMPModpackUpdater\DMPModpackUpdater.csproj", "{B4827F5D-8B54-4C16-8EE8-DDD47094EA3A}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|x86 = Debug|x86
9+
Release|x86 = Release|x86
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{B4827F5D-8B54-4C16-8EE8-DDD47094EA3A}.Debug|x86.ActiveCfg = Debug|x86
13+
{B4827F5D-8B54-4C16-8EE8-DDD47094EA3A}.Debug|x86.Build.0 = Debug|x86
14+
{B4827F5D-8B54-4C16-8EE8-DDD47094EA3A}.Release|x86.ActiveCfg = Release|x86
15+
{B4827F5D-8B54-4C16-8EE8-DDD47094EA3A}.Release|x86.Build.0 = Release|x86
16+
EndGlobalSection
17+
EndGlobal
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
6+
<ProjectGuid>{B4827F5D-8B54-4C16-8EE8-DDD47094EA3A}</ProjectGuid>
7+
<OutputType>Exe</OutputType>
8+
<RootNamespace>DMPModpackUpdater</RootNamespace>
9+
<AssemblyName>DMPModpackUpdater</AssemblyName>
10+
</PropertyGroup>
11+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
12+
<DebugSymbols>true</DebugSymbols>
13+
<DebugType>full</DebugType>
14+
<Optimize>false</Optimize>
15+
<OutputPath>bin\Debug</OutputPath>
16+
<DefineConstants>DEBUG;</DefineConstants>
17+
<ErrorReport>prompt</ErrorReport>
18+
<WarningLevel>4</WarningLevel>
19+
<ExternalConsole>true</ExternalConsole>
20+
<PlatformTarget>x86</PlatformTarget>
21+
</PropertyGroup>
22+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
23+
<Optimize>true</Optimize>
24+
<OutputPath>bin\Release</OutputPath>
25+
<ErrorReport>prompt</ErrorReport>
26+
<WarningLevel>4</WarningLevel>
27+
<ExternalConsole>true</ExternalConsole>
28+
<PlatformTarget>x86</PlatformTarget>
29+
</PropertyGroup>
30+
<ItemGroup>
31+
<Reference Include="System" />
32+
</ItemGroup>
33+
<ItemGroup>
34+
<Compile Include="Program.cs" />
35+
<Compile Include="Properties\AssemblyInfo.cs" />
36+
</ItemGroup>
37+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
38+
</Project>

0 commit comments

Comments
 (0)