Skip to content
This repository has been archived by the owner on Jun 2, 2023. It is now read-only.

Commit

Permalink
53X Again 11!
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiizor authored and Taiizor committed Mar 5, 2021
1 parent c8be4b6 commit d49d0c6
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 102 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# TCNO
<p>TCNO v1.5</p>
<p>TCNO v1.6</p>
<p>Visual Studio 2019</p>
<p>.NET Framework 4.8 (Minimum 4.0)</p>
<p>.NET Framework 4.8 (Minimum 4.0) & .NET 5 & .NET 6</p>
<img src="https://raw.githubusercontent.com/Taiizor/TCNO/master/.screenshots/UI_1.png" />
<img src="https://raw.githubusercontent.com/Taiizor/TCNO/master/.screenshots/UI_2.png" />
<img src="https://raw.githubusercontent.com/Taiizor/TCNO/master/.screenshots/UI_3.png" />
Expand Down
5 changes: 2 additions & 3 deletions TCNO/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
using ReaLTaiizor.Forms;
using System;
using System.ComponentModel;
using System.Threading.Tasks;
using System.Windows.Forms;
using TCN;

namespace TCNO
{
public partial class Main : PoisonForm
{
private static readonly NO TCN = new NO();
private static readonly NO TCN = new();

public Main()
{
Expand Down Expand Up @@ -194,7 +193,7 @@ private void Job_Work(object sender, DoWorkEventArgs e)
poisonButton3.Enabled = false;
poisonButton4.Enabled = false;
int Count = Convert.ToInt32(poisonTextBox1.Text);
Random RNDM = new Random();
Random RNDM = new();
for (int C = 0; C < Count; C++)
{
string GTCN = TCN.Create(RNDM);
Expand Down
6 changes: 3 additions & 3 deletions TCNO/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// denetlenir. Bütünleştirilmiş kod ile ilişkili bilgileri değiştirmek için
// bu öznitelik değerlerini değiştirin.
[assembly: AssemblyTitle("TCNO")]
[assembly: AssemblyDescription("TCNO v1.5")]
[assembly: AssemblyDescription("TCNO v1.6")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Taiizor")]
[assembly: AssemblyProduct("TCNO")]
Expand All @@ -31,5 +31,5 @@
// Tüm değerleri belirtebilir veya varsayılan Derleme ve Düzeltme Numaralarını kullanmak için
// aşağıda gösterildiği gibi '*' kullanabilirsiniz:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.0.0")]
[assembly: AssemblyFileVersion("1.5.0.0")]
[assembly: AssemblyVersion("1.6.0.0")]
[assembly: AssemblyFileVersion("1.6.0.0")]
30 changes: 13 additions & 17 deletions TCNO/Properties/Settings.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions TCNO/TCNO.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ private static void Main()
{
Application.EnableVisualStyles();
Control.CheckForIllegalCrossThreadCalls = false;
#if NET5_0 || NET6_0
Application.SetHighDpiMode(HighDpiMode.SystemAware);
#endif
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
}
Expand Down
93 changes: 20 additions & 73 deletions TCNO/TCNO.csproj
Original file line number Diff line number Diff line change
@@ -1,36 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{19F08D7A-2FE4-43CE-8B23-6CD801F8D04B}</ProjectGuid>
<TargetFrameworks>net4.8;net5.0-windows;net6.0-windows</TargetFrameworks>
<OutputType>WinExe</OutputType>
<RootNamespace>TCNO</RootNamespace>
<AssemblyName>TCNO</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<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|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<AnalysisLevel>preview</AnalysisLevel>
<LangVersion>preview</LangVersion>
<NeutralLanguage>tr</NeutralLanguage>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>TR.ico</ApplicationIcon>
Expand All @@ -39,54 +16,24 @@
<StartupObject>TCNO.TCNO</StartupObject>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.VisualBasic" />
<Reference Include="ReaLTaiizor, Version=3.7.8.2, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\ReaLTaiizor.3.7.8.2\lib\net48\ReaLTaiizor.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Content Include="TR.ico" />
</ItemGroup>
<ItemGroup>
<Compile Include="Main.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Main.Designer.cs">
<DependentUpon>Main.cs</DependentUpon>
</Compile>
<Compile Include="TCNO.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="TCN.cs" />
<EmbeddedResource Include="Main.resx">
<DependentUpon>Main.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>
</Compile>
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.VisualBasic" Version="10.4.0-preview.18571.3" />
<PackageReference Include="ReaLTaiizor" Version="3.7.8.2" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Settings.Designer.cs">
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="TR.ico" />
<None Update="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
4 changes: 0 additions & 4 deletions TCNO/packages.config

This file was deleted.

0 comments on commit d49d0c6

Please sign in to comment.