Skip to content

Commit

Permalink
repo settings
Browse files Browse the repository at this point in the history
  • Loading branch information
bionicl committed Jul 4, 2018
1 parent 7fc624d commit 2d36705
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Arc-app-export-converter.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Arc-app-export-converter", "Arc-app-export-converter\Arc-app-export-converter.csproj", "{E157221F-A3A0-4042-9EDF-970EFA55FB1A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x86 = Debug|x86
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{E157221F-A3A0-4042-9EDF-970EFA55FB1A}.Debug|x86.ActiveCfg = Debug|x86
{E157221F-A3A0-4042-9EDF-970EFA55FB1A}.Debug|x86.Build.0 = Debug|x86
{E157221F-A3A0-4042-9EDF-970EFA55FB1A}.Release|x86.ActiveCfg = Release|x86
{E157221F-A3A0-4042-9EDF-970EFA55FB1A}.Release|x86.Build.0 = Release|x86
EndGlobalSection
EndGlobal
39 changes: 39 additions & 0 deletions Arc-app-export-converter/Arc-app-export-converter.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProjectGuid>{E157221F-A3A0-4042-9EDF-970EFA55FB1A}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Arcappexportconverter</RootNamespace>
<AssemblyName>Arc-app-export-converter</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ExternalConsole>true</ExternalConsole>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ExternalConsole>true</ExternalConsole>
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>
9 changes: 9 additions & 0 deletions Arc-app-export-converter/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using System;

namespace Arcappexportconverter {
class MainClass {
public static void Main(string[] args) {
Console.WriteLine("Hello World!");
}
}
}
26 changes: 26 additions & 0 deletions Arc-app-export-converter/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
using System.Reflection;
using System.Runtime.CompilerServices;

// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.

[assembly: AssemblyTitle("Arc-app-export-converter")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("")]
[assembly: AssemblyCopyright("${AuthorCopyright}")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("1.0.*")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.

//[assembly: AssemblyDelaySign(false)]
//[assembly: AssemblyKeyFile("")]

0 comments on commit 2d36705

Please sign in to comment.