diff --git a/ConsoleApplication2/Class1.cs b/ConsoleApplication2/Class1.cs index 11bf685..f11de73 100644 --- a/ConsoleApplication2/Class1.cs +++ b/ConsoleApplication2/Class1.cs @@ -8,5 +8,19 @@ namespace ConsoleApplication2 { class Class1 { + static void DemoCheck() + { + Console.WriteLine("Hello World!"); + + bool a = true; + bool b = false; + if ( a != true ){ + Console.WriteLine("False {0} {1}", a); + } + + if (b != false ){ + Console.WriteLine("True"); + } + } } } diff --git a/ConsoleApplication2/Program.cs b/ConsoleApplication2/Program.cs index bef4063..f836819 100644 --- a/ConsoleApplication2/Program.cs +++ b/ConsoleApplication2/Program.cs @@ -12,5 +12,10 @@ static void Main(string[] args) { //edit } + + static void New(string[] args) + { + //new function + } } } diff --git a/README.md b/README.md index 75f063a..27ce06b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,20 @@ -# ConsoleApplication2 +# ConsoleApplication3 +[![Build Status](https://search.visualstudio.com/Demo%20GitHub%20Integration/_apis/build/status/Demo%20GitHub%20Integration-.NET%20Desktop-CI)](https://search.visualstudio.com/Demo%20GitHub%20Integration/_build/latest?definitionId=23) +[![Build Status](https://travis-ci.org/mmitrik/ConsoleApplication2.svg?branch=master)](https://travis-ci.org/mmitrik/ConsoleApplication2) + +[![Total alerts](https://img.shields.io/lgtm/alerts/g/mmitrik/ConsoleApplication2.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/mmitrik/ConsoleApplication2/alerts/) + This is my readMe +Alphabet +Bravo +Charlie + +Test subscribe ## Build Status -[![Build Status](https://travis-ci.org/mmitrik/ConsoleApplication2.svg?branch=master)](https://travis-ci.org/mmitrik/ConsoleApplication2) + + + +## Feature +* New +edit diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..ffba062 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,30 @@ +# .NET Desktop +# Build and run tests for .NET Desktop or Windows classic desktop solutions. +# Add steps that publish symbols, save build artifacts, and more: +# https://docs.microsoft.com/vsts/pipelines/apps/windows/dot-net + +pool: + vmImage: 'VS2017-Win2016' + +variables: + solution: '**/*.sln' + buildPlatform: 'Any CPU' + buildConfiguration: 'Release' + +steps: +- task: NuGetToolInstaller@0 + +- task: NuGetCommand@2 + inputs: + restoreSolution: '$(solution)' + +- task: VSBuild@1 + inputs: + solution: '$(solution)' + platform: '$(buildPlatform)' + configuration: '$(buildConfiguration)' + +- task: VSTest@2 + inputs: + platform: '$(buildPlatform)' + configuration: '$(buildConfiguration)' diff --git a/file1.txt b/file1.txt new file mode 100644 index 0000000..4cb29ea --- /dev/null +++ b/file1.txt @@ -0,0 +1,3 @@ +one +two +three