diff --git a/.vs/Flatris-LAB/v17/.wsuo b/.vs/Flatris-LAB/v17/.wsuo new file mode 100644 index 00000000..b1c11a4b Binary files /dev/null and b/.vs/Flatris-LAB/v17/.wsuo differ diff --git a/.vs/Flatris-LAB/v17/DocumentLayout.json b/.vs/Flatris-LAB/v17/DocumentLayout.json new file mode 100644 index 00000000..3d0c7c8b --- /dev/null +++ b/.vs/Flatris-LAB/v17/DocumentLayout.json @@ -0,0 +1,12 @@ +{ + "Version": 1, + "WorkspaceRootPath": "C:\\Users\\e0031355\\source\\repos\\cblevs\\Flatris-LAB\\", + "Documents": [], + "DocumentGroupContainers": [ + { + "Orientation": 0, + "VerticalTabListWidth": 256, + "DocumentGroups": [] + } + ] +} \ No newline at end of file diff --git a/.vs/ProjectSettings.json b/.vs/ProjectSettings.json new file mode 100644 index 00000000..f8b48885 --- /dev/null +++ b/.vs/ProjectSettings.json @@ -0,0 +1,3 @@ +{ + "CurrentProjectSetting": null +} \ No newline at end of file diff --git a/.vs/VSWorkspaceState.json b/.vs/VSWorkspaceState.json new file mode 100644 index 00000000..6b611411 --- /dev/null +++ b/.vs/VSWorkspaceState.json @@ -0,0 +1,6 @@ +{ + "ExpandedNodes": [ + "" + ], + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 00000000..42f12414 Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/README.md b/README.md index cf276ca3..3d95196b 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,5 @@ Thanks [@paulgergely](https://twitter.com/paulgergely) for the initial flat design! Also see [elm-flatris](https://github.com/w0rm/elm-flatris). + +This is a test edit of the Flatris Readme by Me diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 00000000..ba0bcf31 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,21 @@ +# Node.js with React +# Build a Node.js project that uses React. +# Add steps that analyze code, save build artifacts, deploy, and more: +# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript + +trigger: +- master + +pool: + vmImage: ubuntu-latest + +steps: +- task: NodeTool@0 + inputs: + versionSpec: '20.x' + displayName: 'Install Node.js' + +- script: | + npm install + npm run build + displayName: 'npm install and build'