Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.

Commit cc9aa68

Browse files
authored
Update license (#339)
1 parent f7b10ee commit cc9aa68

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+97
-185
lines changed

src/arduino/arduino.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as fs from "fs";
75
import * as glob from "glob";

src/arduino/arduinoContentProvider.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as path from "path";
75
import * as Uuid from "uuid/v4";

src/arduino/arduinoSettings.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as os from "os";
75
import * as path from "path";

src/arduino/board.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import { DeviceContext } from "../deviceContext";
75
import { IBoard, IBoardConfigItem, IPlatform } from "./package";

src/arduino/boardManager.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as fs from "fs";
75
import * as path from "path";

src/arduino/exampleManager.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as fs from "fs";
75
import * as glob from "glob";

src/arduino/libraryManager.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as fs from "fs";
75
import * as path from "path";

src/arduino/localWebServer.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as bodyParser from "body-parser";
75
import * as express from "express";

src/arduino/package.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
/**
75
* Interface that represents an individual package contributor from Arduino package index.

src/arduino/vscodeSettings.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as vscode from "vscode";
75

src/arduinoActivator.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import { ArduinoApp } from "./arduino/arduino";
75
import { ArduinoSettings } from "./arduino/arduinoSettings";

src/arduinoContext.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
54
import { ArduinoApp } from "./arduino/arduino";
65
import { BoardManager } from "./arduino/boardManager";
76
import { DebugConfigurator } from "./debug/configurator";

src/common/constants.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as path from "path";
75
import * as vscode from "vscode";

src/common/outputChannel.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as vscode from "vscode";
75

src/common/platform.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53
import * as path from "path";
64
import { directoryExistsSync, fileExistsSync } from "./util";
75

src/common/sys/darwin.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
2-
/*--------------------------------------------------------------------------------------------
3-
* Copyright (C) Microsoft Corporation. All rights reserved.
4-
* Licensed under the MIT License. See License.txt in the project root for license information.
5-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
63

74
import * as childProcess from "child_process";
85
import * as path from "path";

src/common/sys/linux.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as childProcess from "child_process";
75
import * as path from "path";

src/common/sys/win32.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as childProcess from "child_process";
75
import * as path from "path";

src/common/util.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as childProcess from "child_process";
75
import * as fs from "fs";

src/debug/configurator.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as path from "path";
75
import * as vscode from "vscode";

src/debug/debuggerManager.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
14
import * as fs from "fs";
25
import * as path from "path";
36
import * as vscode from "vscode";

src/deviceContext.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as fs from "fs";
75
import * as path from "path";

src/extension.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
3+
54
import * as path from "path";
65
import * as Uuid from "uuid/v4";
76
import * as vscode from "vscode";

src/langService/completionProvider.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as fs from "fs";
75
import * as path from "path";

src/logger/logger.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as vscode from "vscode";
75
import * as winston from "winston";

src/logger/telemetry-transport.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as vscode from "vscode";
75
import TelemetryReporter from "vscode-extension-telemetry";

src/logger/user-notification-transport.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as vscode from "vscode";
75
import * as winston from "winston";

src/serialmonitor/serialMonitor.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as vscode from "vscode";
75
import * as constants from "../common/constants";

src/serialmonitor/serialportctrl.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as os from "os";
75
import { OutputChannel, QuickPickItem, StatusBarAlignment, StatusBarItem, window } from "vscode";

src/serialmonitor/usbDetector.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as fs from "fs";
75
import * as os from "os";

src/views/app/actions/api.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
function postHTTP(url, postData) {
75
const request = new Request(url, {

src/views/app/actions/index.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as API from "./api";
75
import * as JSONHelper from "./cycle";

src/views/app/components/BoardConfig.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as React from "react";
75
import { Grid, Row } from "react-bootstrap";

src/views/app/components/BoardConfigItemView.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as React from "react";
75
import { Col, DropdownButton, MenuItem } from "react-bootstrap";

src/views/app/components/BoardItemView.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as React from "react";
75
import { Button, DropdownButton, MenuItem } from "react-bootstrap";

src/views/app/components/BoardManager.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as React from "react";
75
import { Button, DropdownButton, MenuItem } from "react-bootstrap";

src/views/app/components/BoardSelector.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
/*--------------------------------------------------------------------------------------------
2-
* Copyright (C) Microsoft Corporation. All rights reserved.
3-
* Licensed under the MIT License. See License.txt in the project root for license information.
4-
*-------------------------------------------------------------------------------------------*/
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT license.
53

64
import * as React from "react";
75
import { Col, DropdownButton, Grid, Row } from "react-bootstrap";

0 commit comments

Comments
 (0)