Skip to content

Commit

Permalink
Version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ni1kko committed Oct 2, 2019
1 parent 0d215b7 commit 7d92bd7
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 40 deletions.
3 changes: 0 additions & 3 deletions infiBanChecker.json

This file was deleted.

14 changes: 11 additions & 3 deletions infiBanChecker/infiBanChecker/Program.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
using System.Threading.Tasks;
using System;
using System.Threading.Tasks;

namespace infiBanChecker
{
internal sealed class Program
{
{
#region Version information
// Major Version
// Minor Version
// Build Number
internal const string version = "1.1.0";
#endregion

#region EntryPoint
private static async Task Main()
{
{
#region Setup the console window parameters
Utils.Helpers.setupConsole(
$"{Utils.Helpers._assembly.GetName().Name}",
Expand Down
File renamed without changes.
40 changes: 10 additions & 30 deletions infiBanChecker/infiBanChecker/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,36 +1,16 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Reflection;
using System.Runtime.InteropServices;
using infiBanChecker;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("infiBanChecker")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("check infistar globalban state")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCompany("FalloxGroup")]
[assembly: AssemblyProduct("infiBanChecker")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyCopyright("Nikko Renolds")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("234c81de-7c29-4947-8087-ffe4eff467fb")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(true)]
[assembly: Guid("F0E2ED09-E530-4F90-AADF-42447A6FC3A3")]
[assembly: AssemblyVersion(Program.version)]
[assembly: AssemblyFileVersion(Program.version)]
3 changes: 1 addition & 2 deletions infiBanChecker/infiBanChecker/Utils/InfiBanCheck.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

namespace infiBanChecker.Utils
namespace infiBanChecker.Utils
{
internal sealed class InfiBanCheck
{
Expand Down
4 changes: 2 additions & 2 deletions infiBanChecker/infiBanChecker/infiBanChecker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
<Compile Include="Utils\InfiBanCheck.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
<None Include="Properties\App.config" />
<None Include="Properties\packages.config" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down

0 comments on commit 7d92bd7

Please sign in to comment.