microsoft/typespec

Public

mirrored from https://github.com/microsoft/typespecAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a6b7827fcd2db3bf604d42e235216c8d5b244f13

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

packages/internal-build-utils/src/constants.ts

12lines · modecode

1export const vsMinimumVersion = "16.9";
2
3export const MinimumDotnetVersion = {
4 major: 6,
5 minor: 0,
6};
7
8/**
9 * When publishing the preview version name of the suffix
10 * @example 1.2.0-dev.3
11 */
12export const PRERELEASE_TYPE = "dev";
13