Skip to content

Commit 8ddd22f

Browse files
committed
Version 1.0.1
1 parent 6439730 commit 8ddd22f

13 files changed

+782
-0
lines changed

ASCII Orbit.csproj

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{D8419A89-46A1-441D-BC12-DDC31E22D787}</ProjectGuid>
8+
<OutputType>Exe</OutputType>
9+
<RootNamespace>ASCII_Orbit</RootNamespace>
10+
<AssemblyName>ASCII Orbit</AssemblyName>
11+
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<PlatformTarget>AnyCPU</PlatformTarget>
18+
<DebugSymbols>true</DebugSymbols>
19+
<DebugType>full</DebugType>
20+
<Optimize>false</Optimize>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DefineConstants>DEBUG;TRACE</DefineConstants>
23+
<ErrorReport>prompt</ErrorReport>
24+
<WarningLevel>4</WarningLevel>
25+
</PropertyGroup>
26+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27+
<PlatformTarget>AnyCPU</PlatformTarget>
28+
<DebugType>pdbonly</DebugType>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>TRACE</DefineConstants>
32+
<ErrorReport>prompt</ErrorReport>
33+
<WarningLevel>4</WarningLevel>
34+
</PropertyGroup>
35+
<PropertyGroup>
36+
<SignManifests>false</SignManifests>
37+
</PropertyGroup>
38+
<PropertyGroup>
39+
<ManifestCertificateThumbprint>2888365B9361140A106AA1AD96DA1E6332675D54</ManifestCertificateThumbprint>
40+
</PropertyGroup>
41+
<PropertyGroup>
42+
<ManifestKeyFile>ASCII Orbit_TemporaryKey.pfx</ManifestKeyFile>
43+
</PropertyGroup>
44+
<PropertyGroup>
45+
<SignAssembly>false</SignAssembly>
46+
</PropertyGroup>
47+
<PropertyGroup>
48+
<ApplicationIcon>symbol.ico</ApplicationIcon>
49+
</PropertyGroup>
50+
<ItemGroup>
51+
<Reference Include="System" />
52+
<Reference Include="System.Core" />
53+
<Reference Include="System.Xml.Linq" />
54+
<Reference Include="System.Data.DataSetExtensions" />
55+
<Reference Include="Microsoft.CSharp" />
56+
<Reference Include="System.Data" />
57+
<Reference Include="System.Net.Http" />
58+
<Reference Include="System.Xml" />
59+
</ItemGroup>
60+
<ItemGroup>
61+
<Compile Include="Program.cs" />
62+
<Compile Include="Properties\AssemblyInfo.cs" />
63+
</ItemGroup>
64+
<ItemGroup>
65+
<None Include="App.config" />
66+
<None Include="ASCII Orbit_TemporaryKey.pfx" />
67+
</ItemGroup>
68+
<ItemGroup>
69+
<Content Include="icon.ico" />
70+
<Content Include="symbol.ico" />
71+
</ItemGroup>
72+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
73+
</Project>

ASCII Orbit.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.7.34003.232
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ASCII Orbit", "ASCII Orbit\ASCII Orbit.csproj", "{D8419A89-46A1-441D-BC12-DDC31E22D787}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{D8419A89-46A1-441D-BC12-DDC31E22D787}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{D8419A89-46A1-441D-BC12-DDC31E22D787}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{D8419A89-46A1-441D-BC12-DDC31E22D787}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{D8419A89-46A1-441D-BC12-DDC31E22D787}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {B294C090-ED5A-4817-AB38-9D046A895C76}
24+
EndGlobalSection
25+
EndGlobal

App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
5+
</startup>
6+
</configuration>

LICENSE

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
2+
| ASCII-ORBIT - TERMINAL SHOOTER |
3+
| COPYRIGHT NOTICE |
4+
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
5+
6+
The MIT License grants permission, free of charge, to any individual
7+
obtaining a copy of this software and its associated documentation
8+
files (the "Software") to use, copy, modify, merge, publish, distribute,
9+
sublicense, and/or sell copies of the Software. This permission also
10+
extends to allowing others to whom the Software is furnished to do the
11+
same, subject to the following conditions:
12+
13+
1. **Attribution:** The copyright notice and this permission notice must
14+
be included in all copies or significant portions of the Software.
15+
16+
2. **Acknowledgment:** Proper attribution to the original creator must be
17+
provided in all projects, documentation, or other materials that utilize
18+
this Software. Additionally, a link to the original repository created by
19+
Bernd Hagen should be included.
20+
21+
The Software is provided "as is," without any warranty of any kind, express
22+
or implied, including but not limited to warranties of merchantability,
23+
fitness for a particular purpose, and noninfringement. Under no circumstances
24+
shall the authors or copyright holders be held liable for any claims, damages,
25+
or other liabilities, whether in an action of contract, tort, or otherwise,
26+
arising from or related to the Software or its use.
27+
28+
For more details, please visit: https://opensource.org/licenses/MIT

0 commit comments

Comments
 (0)