PostSharp.Engineering.Sdk 1.0.97-alpha.2

Prefix Reserved
This is a prerelease version of PostSharp.Engineering.Sdk.
There is a newer version of this package available.
See the version list below for details.
dotnet add package PostSharp.Engineering.Sdk --version 1.0.97-alpha.2                
NuGet\Install-Package PostSharp.Engineering.Sdk -Version 1.0.97-alpha.2                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PostSharp.Engineering.Sdk" Version="1.0.97-alpha.2" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PostSharp.Engineering.Sdk --version 1.0.97-alpha.2                
#r "nuget: PostSharp.Engineering.Sdk, 1.0.97-alpha.2"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PostSharp.Engineering.Sdk as a Cake Addin
#addin nuget:?package=PostSharp.Engineering.Sdk&version=1.0.97-alpha.2&prerelease

// Install PostSharp.Engineering.Sdk as a Cake Tool
#tool nuget:?package=PostSharp.Engineering.Sdk&version=1.0.97-alpha.2&prerelease                

PostSharp Engineering

Table of contents

Content

This repository contains common development, build and publishing scripts. It produces two NuGet packages:

  • PostSharp.Engineering.BuildTools is meant to be added as a package reference from the facade C# build program.

  • PostSharp.Engineering.Sdk is meant to be used as an SDK project.

    • AssemblyMetadata.targets: Adds package versions to assembly metadata.
    • BuildOptions.props: Sets the compiler options like language version, nullability and other build options like output path.
    • TeamCity.targets: Enables build and tests reporting to TeamCity.
    • SourceLink.props: Enables SourceLink support.
    • Coverage.props: Enabled code coverage. This script should be imported in test projects only (not in projects being tested). This script adds a package to coverlet so there is no need to have in in test projects (and these references should be removed).
    • MetalamaBranding.props and PostSharpBranding.props: Configure the proper icon for the nuget package.
    • PackagesConfig.targets: Makes the Restore and Pack targets work for projects referencing NuGet using packages.config.
    • WebPublish.targets: Configures the release build of web projects to be published as a zipped artifact.
    • TestsPublish.targets: Configures the release build of test projects to be published as a zipped artifact.

Both packages must be used at the same time.

Concepts

Terminology

A product is almost synonym for repository. There is a single product per repository, and the product name must be the same as the repository name. A product can contain several C# solutions.

Build and testing locally

For details, do Build.ps1 in PowerShell and read the help.

Versioning

Objectives

A major goal of this SDK is to allow to build and test repositories that have references to other repositories without having to publish the nuget package. That is, it is possible and quite easy, with this SDK, to perform builds that reference local clones of repositories. All solutions or projects in the same product share have the same version.

Configuring the version of the current product

The product package version and package version suffix configuration is centralized in the eng\MainVersion.props script via the MainVersion and PackageVersionSuffix properties, respectively. For RTM products, leave the PackageVersionSuffix property value empty.

Configuring the version of dependent products or packages.

Package dependencies versions configuration is centralized in the eng\Versions.props script. Each dependency version is configured in a property named <[DependencyName]Version>, eg. <SystemCollectionsImmutableVersion>.

This property value is then available in all MSBuild project files in the repository and can be used in the PackageReference items. For example:

<ItemGroup>
    <PackageReference Include="System.Collections.Immutable" Version="$(SystemCollectionsImmutableVersion)" />
</ItemGroup>

Using a local build of a referenced product

Dependencies must be checked out under the same root directory (typically c:\src) under their canonic name.

Then, use Build.ps1 dependencies set local <DEPENDENCY> to specify which dependencies should be run locally.

This will generate eng/Versions.g.props, which you should have imported in eng/Versions.props.

Installation

The easiest way to get started is from this repo template: https://github.com/postsharp/PostSharp.Engineering.ProductTemplate.

Step 1. Edit global.json

Add or update the reference to PostSharp.Engineering.Sdk in global.json.

{
  "sdk": {
    "version": "5.0.206",
    "rollForward": "disable"
  },
  "msbuild-sdks": {
    "PostSharp.Engineering.Sdk": "1.0.0"
  }
}

Step 2. Packaging.props

Create eng\Packaging.props file. The content should look like this:

<Project>

    
    <PropertyGroup>
        <Authors>PostSharp Technologies</Authors>
        <PackageProjectUrl>https://github.com/postsharp/Caravela</PackageProjectUrl>
        <PackageTags>PostSharp Caravela AOP</PackageTags>
        <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
        <PackageIcon>PostSharpIcon.png</PackageIcon>
        <PackageLicenseFile>LICENSE.md</PackageLicenseFile>
    </PropertyGroup>

    
    <ItemGroup>
        <None Include="$(MSBuildThisFileDirectory)..\PostSharpIcon.png" Visible="false" Pack="true" PackagePath="" />
        <None Include="$(MSBuildThisFileDirectory)..\LICENSE.md" Visible="false" Pack="true" PackagePath="" />
        <None Include="$(MSBuildThisFileDirectory)..\THIRD-PARTY-NOTICES.TXT" Visible="false" Pack="true" PackagePath="" />
    </ItemGroup>

</Project>

Make sure that all the files referenced in the previous step exist, or modify the file.

Step 3. MainVersion.props

Create eng\MainVersion.props file. The content should look like:

<Project>
    <PropertyGroup>
        <MainVersion>0.3.6</MainVersion>
        <PackageVersionSuffix>-preview</PackageVersionSuffix>
    </PropertyGroup>
</Project>

Additionally, there may be a property named PatchVersion, which may contain a version number with 4 components. The PatchVersion property value MUST start with the value of the MainVersion property. The use case for this property is when a repo A has a version dependency on another repo B but we want to release a patch of repo B without releasing a new build of repo A.

Step 4. Versions.props

Create eng\Versions.props file. The content should look like this (replace My by the name of the repo without dot):

<Project>

    
    <Import Project="MainVersion.props" Condition="!Exists('MyVersion.props')" />
    
    <PropertyGroup>
        <MyVersion>$(MainVersion)$(PackageVersionSuffix)</MyVersion>
        <MyAssemblyVersion>$(MainVersion)</MyAssemblyVersion>
    </PropertyGroup>

    
    <PropertyGroup>
        <RoslynVersion>3.8.0</RoslynVersion>
        <CaravelaCompilerVersion>3.8.12-preview</CaravelaCompilerVersion>
        <MicrosoftCSharpVersion>4.7.0</MicrosoftCSharpVersion>
    </PropertyGroup>

    
    <Import Project="../artifacts/publish/private/MyVersion.props" Condition="Exists('../artifacts/publish/private/MyVersion.props')" />
    <Import Project="Dependencies.props" Condition="Exists('Dependencies.props')" />

    
    <PropertyGroup>
        <AssemblyVersion>$(MyAssemblyVersion)</AssemblyVersion>
        <Version>$(MyVersion)</Version>
    </PropertyGroup>
    

</Project>

Step 5. Directory.Build.props

Add the following content to Directory.Build.props:

<Project>

  <PropertyGroup>
    <RepoDirectory>$(MSBuildThisFileDirectory)</RepoDirectory>
    <RepoKind>AzureRepos</RepoKind>
  </PropertyGroup>

  <Import Project="eng\Versions.props" />
  <Import Project="eng\Packaging.props" />

  <Import Sdk="PostSharp.Engineering.Sdk" Project="BuildOptions.props" />
  <Import Sdk="PostSharp.Engineering.Sdk" Project="CodeQuality.props" />
  <Import Sdk="PostSharp.Engineering.Sdk" Project="SourceLink.props" />

</Project>

Step 6. Directory.Build.targets

Add the following content to Directory.Build.targets:

<Project>

  <Import Sdk="PostSharp.Engineering.Sdk"  Project="AssemblyMetadata.targets" />
  <Import Sdk="PostSharp.Engineering.Sdk"  Project="TeamCity.targets" />

</Project>

Step 7. Create the front-end build project

Create a file eng\src\Build.csproj with the following content:

<Project Sdk="Microsoft.NET.Sdk">

    <PropertyGroup>
        <OutputType>Exe</OutputType>
        <TargetFramework>net6.0</TargetFramework>
        <AssemblyName>Build</AssemblyName>
        <GenerateDocumentationFile>false</GenerateDocumentationFile>
        <LangVersion>latest</LangVersion>
        <Nullable>enable</Nullable>
        <NoWarn>SA0001;CS8002</NoWarn>
    </PropertyGroup>

    <ItemGroup>
        <PackageReference Include="PostSharp.Engineering.BuildTools.csproj" Version="$(PostSharpEngineeringVersion)" />
    </ItemGroup>

</Project>

Create also a file eng\src\Program.cs with content that varies according to your repo. You can use all the power of C# and PowerShell to customize the build. Note that in the PublicArtifacts, the strings $(Configuration) and $(PackageVersion), and only those strings, are replaced by their value.

using PostSharp.Engineering.BuildTools;
using PostSharp.Engineering.BuildTools.Commands.Build;
using Spectre.Console.Cli;
using System.Collections.Immutable;

namespace BuildCaravela
{
    internal class Program
    {
        private static int Main( string[] args )
        {
            var product = new Product
            {
                ProductName = "Caravela",
                Solutions = ImmutableArray.Create<Solution>(
                    new DotNetSolution( "Caravela.sln" )
                    {
                        SupportsTestCoverage = true
                    },
                    new DotNetSolution( "Tests\\Caravela.Framework.TestApp\\Caravela.Framework.TestApp.sln" )
                    {
                        IsTestOnly = true
                    } ),
                PublicArtifacts = ImmutableArray.Create(
                    "bin\\$(Configuration)\\Caravela.Framework.$(PackageVersion).nupkg",
                    "bin\\$(Configuration)\\Caravela.TestFramework.$(PackageVersion).nupkg",
                    "bin\\$(Configuration)\\Caravela.Framework.Redist.$(PackageVersion).nupkg",
                    "bin\\$(Configuration)\\Caravela.Framework.Sdk.$(PackageVersion).nupkg",
                    "bin\\$(Configuration)\\Caravela.Framework.Impl.$(PackageVersion).nupkg",
                    "bin\\$(Configuration)\\Caravela.Framework.DesignTime.Contracts.$(PackageVersion).nupkg" ),
                 Dependencies = ImmutableArray.Create(
                    new ProductDependency("Caravela.Compiler"), 
                    new ProductDependency("PostSharp.Engineering.BuildTools") )    
            };
            var commandApp = new CommandApp();
            commandApp.AddProductCommands( product );

            return commandApp.Run( args );
        }
    }
}

Step 8. Create Build.ps1, the front-end build script

Create Build.ps1 file in the repo root directory. The content should look like:

if ( $env:VisualStudioVersion -eq $null ) {
    Import-Module "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\Microsoft.VisualStudio.DevShell.dll"
    Enter-VsDevShell -VsInstallPath "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\" -StartInPath $(Get-Location)
}

& dotnet run --project "$PSScriptRoot\eng\src\Build.csproj" -- $args
exit $LASTEXITCODE

Step 9. Editing .gitignore

Exclude this:

artifacts
eng/tools
*.Import.props

Build Concepts

The code in Program.cs uses the concepts described here.

classDiagram

  class Product {

  }

  class Solution {

  }



  Program o-- "1" Product 
  Product o-- "*" Solution
  Product  o-- "*" DependencyDefinition
  Product  o-- "3" BuildConfigurationInfo
  BuildConfigurationInfo  o-- "*" IBuildTrigger
  BuildConfigurationInfo o-- "*" Publisher
  BuildConfigurationInfo o-- "*" Swapper
  Swapper o-- "*" Tester
  Solution <|-- DotNetSolution
  Solution <|-- MSBuildSolution
  Tester <|-- VSTestTester
  IBuildTrigger <|-- NightlyBuildTrigger
  IBuildTrigger <|-- SourceBuildTrigger
  Publisher <|-- MSDeployPublisher
  Publisher <|-- NuGetPublisher
  Publisher <|-- VsixPublisher
  

  • Program is your program, i.e. BuildMyProduct.
  • Product is a unique instance configured by Program, the root object that defines the build for the whole repo.
  • Solution represents a solution, project, or other build script in your repo. A solution is something that can be restored, built, packed, tested. Two standard implementations are DotNetSolution and MSBuildSolution.
  • BuildConfigurationInfo represents properties that are specific to a build configuration (i.e. Debug, Release or Public) for the product.
  • DependencyDefinition are dependencies to other repositories.
  • Publisher is something that publishes, or deploys, an already-built artefact to a feed, marketplace, deployment slot, or anything. There are standard implementations for NuGet, VSIX, web sites.
  • Swapper is something that swaps a staging deployment slot into the production deployment slot.
  • Tester is a test suite, typically running against a staging deployment, that must execute successfully before the staging deployment is swapped into the production deployment.

Continuous integration

We use TeamCity as our CI/CD pipeline, and we use Kotlin scripts stored in the Git repo. For an example, see the .teamcity directory the current repo.

Artifacts

All TeamCity artifacts are published under artifacts/publish. All build configurations should export and import these artifacts.

Commands

All TeamCity build configurations use the front-end Build.ps1:

  • Debug Build and Test: Build.ps1 test --numbered %build.number%
  • Release Build and Test: Build.ps1 test --public --sign
  • Publish to internal package sources: Build.ps1 publish
  • Publish to internal and public package source: Build.ps1 publish --public

Required environment variables

  • SIGNSERVER_SECRET
  • INTERNAL_NUGET_PUSH_URL
  • INTERNAL_NUGET_API_KEY
  • NUGET_ORG_API_KEY
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2023.2.151 37 11/22/2024
2023.2.150 59 11/22/2024
2023.2.149 48 11/21/2024
2023.2.148 74 11/20/2024
2023.2.147 71 11/19/2024
2023.2.146 65 11/15/2024
2023.2.145 78 11/12/2024
2023.2.144 80 11/12/2024
2023.2.143 85 11/11/2024
2023.2.142 248 11/7/2024
2023.2.141 117 11/7/2024
2023.2.140 1,300 11/6/2024
2023.2.139 157 11/6/2024
2023.2.138 77 11/5/2024
2023.2.137 421 10/24/2024
2023.2.136 1,765 10/14/2024
2023.2.135 1,042 10/4/2024
2023.2.134 155 9/29/2024
2023.2.133 106 9/25/2024
2023.2.132 216 9/24/2024
2023.2.131 90 9/24/2024
2023.2.130 526 9/11/2024
2023.2.129 2,472 9/11/2024
2023.2.128 113 9/11/2024
2023.2.127 103 9/10/2024
2023.2.126 267 9/9/2024
2023.2.125 118 9/9/2024
2023.2.124 387 9/6/2024
2023.2.123 153 8/29/2024
2023.2.122 263 8/28/2024
2023.2.121 87 8/27/2024
2023.2.120 88 8/27/2024
2023.2.119 97 8/27/2024
2023.2.118 86 8/27/2024
2023.2.117 142 8/27/2024
2023.2.116 172 8/9/2024
2023.2.115 83 8/5/2024
2023.2.114 85 8/5/2024
2023.2.113 201 7/25/2024
2023.2.112 244 7/12/2024
2023.2.111 2,288 7/12/2024
2023.2.110 442 7/10/2024
2023.2.109 1,902 6/10/2024
2023.2.108 315 5/30/2024
2023.2.107 201 5/28/2024
2023.2.106 506 5/27/2024
2023.2.105 108 5/24/2024
2023.2.104 108 5/23/2024
2023.2.103 116 5/23/2024
2023.2.102 119 5/23/2024
2023.2.101 99 5/23/2024
2023.2.100 122 5/22/2024
2023.2.99 116 5/22/2024
2023.2.98 446 5/22/2024
2023.2.97 100 5/22/2024
2023.2.96 113 5/22/2024
2023.2.95 95 5/21/2024
2023.2.94 280 5/21/2024
2023.2.93 335 5/19/2024
2023.2.92 109 5/19/2024
2023.2.91 119 5/18/2024
2023.2.90 270 5/15/2024
2023.2.89 219 5/15/2024
2023.2.88 91 5/15/2024
2023.2.87 106 5/13/2024
2023.2.86 291 4/29/2024
2023.2.85 507 4/23/2024
2023.2.84 922 4/2/2024
2023.2.83 4,550 3/28/2024
2023.2.82 134 3/26/2024
2023.2.81 112 3/23/2024
2023.2.80 479 3/22/2024
2023.2.79 134 3/13/2024
2023.2.78 741 2/12/2024
2023.2.77 154 1/10/2024
2023.2.76 1,245 1/8/2024
2023.2.75 352 1/8/2024
2023.2.74 128 1/5/2024
2023.2.73 127 1/5/2024
2023.2.72 117 1/5/2024
2023.2.71 463 1/3/2024
2023.2.70 3,904 1/2/2024
2023.2.69 136 12/22/2023
2023.2.68 512 12/21/2023
2023.2.67 136 12/19/2023
2023.2.66 124 12/18/2023
2023.2.65 142 12/18/2023
2023.2.64 876 12/12/2023
2023.2.63 236 12/1/2023
2023.2.62 552 12/1/2023
2023.2.61 279 11/30/2023
2023.2.60 165 11/30/2023
2023.2.59 119 11/30/2023
2023.2.58 464 11/13/2023
2023.2.57 557 10/25/2023
2023.2.56 1,579 10/23/2023
2023.2.55 149 10/20/2023
2023.2.54 168 10/20/2023
2023.2.53 412 10/19/2023
2023.2.52 277 10/18/2023
2023.2.51 149 10/18/2023
2023.2.50 198 10/17/2023
2023.2.49 1,348 10/12/2023
2023.2.48 440 10/12/2023
2023.2.47 338 10/11/2023
2023.2.46 129 10/11/2023
2023.2.45 333 10/11/2023
2023.2.44 144 10/11/2023
2023.2.43 216 9/25/2023
2023.2.42 139 9/20/2023
2023.2.41 2,141 9/11/2023
2023.2.40 522 8/30/2023
2023.2.39 261 8/25/2023
2023.2.38 479 8/22/2023
2023.2.37 290 8/21/2023
2023.2.36 2,445 8/18/2023
2023.2.35 145 8/18/2023
2023.2.34 177 8/9/2023
2023.2.33 223 7/29/2023
2023.2.32 1,103 7/26/2023
2023.2.31 160 7/25/2023
2023.2.30 215 7/25/2023
2023.2.29 288 7/23/2023
2023.2.28 162 7/23/2023
2023.2.27 246 7/21/2023
2023.2.26 464 7/19/2023
2023.2.25 173 7/19/2023
2023.2.24 1,312 6/27/2023
2023.2.23 399 6/26/2023
2023.2.22 476 6/25/2023
2023.2.21 178 6/24/2023
2023.2.20 173 6/23/2023
2023.2.19 201 6/23/2023
2023.2.18 198 6/23/2023
2023.2.17 242 6/22/2023
2023.2.16 339 6/22/2023
2023.2.15 182 6/22/2023
2023.2.14 219 6/21/2023
2023.2.13 203 6/16/2023
2023.2.12 188 6/15/2023
2023.2.11 597 6/13/2023
2023.2.10 157 6/12/2023
2023.2.9 198 6/12/2023
2023.2.8 197 6/12/2023
2023.2.7 237 6/10/2023
2023.2.6-preview 168 6/10/2023
2023.2.5-preview 131 6/9/2023
2023.2.4-preview 234 6/9/2023
2023.2.3-preview 156 6/7/2023
2023.2.2-preview 183 6/2/2023
2023.2.1-preview 151 6/2/2023
2023.1.28-preview 87 9/5/2024
2023.1.27-preview 93 9/5/2024
2023.1.26-preview 109 9/4/2024
2023.1.25-preview 100 9/4/2024
2023.1.24-preview 88 9/4/2024
2023.1.23-preview 89 9/4/2024
2023.1.22-preview 90 9/3/2024
2023.1.21-preview 88 9/3/2024
2023.1.20-preview 91 9/3/2024
2023.1.19-preview 87 9/2/2024
2023.1.18-preview 93 9/2/2024
2023.1.17-preview 89 9/2/2024
2023.1.16-preview 97 8/30/2024
2023.1.15-preview 97 8/29/2024
2023.1.14-preview 238 5/24/2023
2023.1.13-preview 910 5/24/2023
2023.1.12-preview 219 5/23/2023
2023.1.11-preview 133 5/23/2023
2023.1.10-preview 139 5/17/2023
2023.1.9-preview 163 5/17/2023
2023.1.8-preview 149 5/15/2023
2023.1.7-preview 420 5/10/2023
2023.1.6-preview 255 4/27/2023
2023.1.5-preview 222 4/26/2023
2023.1.4-preview 127 4/26/2023
2023.1.3-preview 295 4/21/2023
2023.1.2-preview 141 4/21/2023
2023.1.1-preview 191 4/21/2023
2023.1.0-preview 135 4/21/2023
2023.0.150 191 5/29/2023
2023.0.149 491 5/24/2023
2023.0.148 222 5/23/2023
2023.0.147 209 5/17/2023
2023.0.146 243 5/17/2023
2023.0.145 199 5/9/2023
2023.0.144 468 5/2/2023
2023.0.143 201 5/2/2023
1.0.142-preview 189 4/24/2023
1.0.141-preview 141 4/5/2023
1.0.140-preview 262 4/4/2023
1.0.139-preview 299 3/30/2023
1.0.138-preview 292 3/30/2023
1.0.137-preview 145 3/30/2023
1.0.136-preview 141 3/30/2023
1.0.135-preview 840 3/30/2023
1.0.134-preview 319 3/1/2023
1.0.133-preview 157 3/1/2023
1.0.132-preview 552 2/27/2023
1.0.131-preview 542 2/24/2023
1.0.130-preview 1,104 2/22/2023
1.0.129-preview 160 2/22/2023
1.0.128-preview 214 2/21/2023
1.0.127-preview 157 2/17/2023
1.0.126-preview 591 2/16/2023
1.0.125-preview 194 2/16/2023
1.0.124-preview 174 2/15/2023
1.0.123-preview 147 2/15/2023
1.0.122-preview 179 2/10/2023
1.0.121-preview 149 2/10/2023
1.0.120-preview 156 2/10/2023
1.0.119-preview 187 2/9/2023
1.0.118-preview 188 2/8/2023
1.0.117-preview 218 1/30/2023
1.0.116-preview 171 1/26/2023
1.0.115-preview 156 1/26/2023
1.0.114-preview 830 1/16/2023
1.0.113-preview 230 1/13/2023
1.0.112-preview 444 1/8/2023
1.0.111-preview 487 1/5/2023
1.0.110-preview 665 12/18/2022
1.0.109-preview 206 12/15/2022
1.0.108-preview 178 12/13/2022
1.0.107-preview 206 12/9/2022
1.0.107-alpha.2 116 12/9/2022
1.0.107-alpha.1 103 12/9/2022
1.0.106-preview 215 12/8/2022
1.0.105-preview 159 12/8/2022
1.0.105-alpha.2 110 12/8/2022
1.0.105-alpha.1 120 12/6/2022
1.0.104-preview 212 12/5/2022
1.0.103-preview 334 12/2/2022
1.0.102-preview 638 11/18/2022
1.0.101-preview 1,182 11/3/2022
1.0.101-alpha.3 138 11/3/2022
1.0.101-alpha.2 147 11/2/2022
1.0.101-alpha.1 105 11/2/2022
1.0.100-preview 771 10/28/2022
1.0.99-preview 485 10/27/2022
1.0.99-alpha.3 115 10/27/2022
1.0.99-alpha.2 135 10/26/2022
1.0.99-alpha.1 113 10/26/2022
1.0.98-preview 304 10/25/2022
1.0.97-preview 411 10/20/2022
1.0.97-alpha.2 177 10/19/2022
1.0.97-alpha.1 166 10/19/2022
1.0.96-preview 449 10/7/2022
1.0.95-preview 154 10/4/2022
1.0.94-preview 650 9/29/2022
1.0.93-preview 179 9/29/2022
1.0.92-preview 224 9/27/2022
1.0.91-preview 369 9/27/2022
1.0.90-preview 209 9/27/2022
1.0.90-alpha.1 138 9/26/2022
1.0.89-preview 459 9/11/2022
1.0.87-preview 698 9/6/2022
1.0.86-preview 340 9/5/2022
1.0.86-alpha.1 113 9/2/2022
1.0.85-preview 381 8/2/2022
1.0.84-preview 304 7/29/2022
1.0.83-preview 501 7/28/2022
1.0.83-alpha.3 135 7/28/2022
1.0.83-alpha.2 135 7/28/2022
1.0.83-alpha.1 128 7/28/2022
1.0.82-preview 563 7/27/2022
1.0.82-beta.3 216 7/27/2022
1.0.82-beta.2 173 7/26/2022
1.0.82-beta 179 7/26/2022
1.0.82-alpha.1 121 7/25/2022
1.0.81-preview 249 7/22/2022
1.0.80-preview 193 7/20/2022
1.0.80-alpha.3 141 7/20/2022
1.0.80-alpha.2 136 7/20/2022
1.0.80-alpha 196 7/20/2022
1.0.79-preview 288 7/19/2022
1.0.79-beta 169 7/15/2022
1.0.79-alpha.1 277 7/2/2022
1.0.78-preview 375 7/12/2022
1.0.78-alpha.1 144 7/2/2022
1.0.77-preview 227 6/24/2022
1.0.76-preview 222 6/22/2022
1.0.75-preview 270 6/21/2022
1.0.74-preview 210 6/18/2022
1.0.73-preview 389 6/16/2022
1.0.72-preview 186 6/15/2022
1.0.71-preview 180 6/10/2022
1.0.70-preview 790 6/6/2022
1.0.70-beta 189 6/3/2022
1.0.69-preview 203 5/24/2022
1.0.68-preview 243 5/23/2022
1.0.68-beta-4 178 5/23/2022
1.0.68-beta-3 195 5/16/2022
1.0.68-beta-2 178 5/16/2022
1.0.68-beta 191 5/12/2022
1.0.67-preview 253 5/11/2022
1.0.67-beta-4 165 5/11/2022
1.0.67-beta-3 187 5/10/2022
1.0.67-beta-2 183 5/10/2022
1.0.67-beta 180 5/10/2022
1.0.66-preview 195 5/9/2022
1.0.65-preview 173 5/4/2022
1.0.65-beta 187 4/29/2022
1.0.64-preview 188 4/26/2022
1.0.63-preview 181 4/22/2022
1.0.63-beta-6 170 4/21/2022
1.0.63-beta-5 182 4/21/2022
1.0.63-beta-4 177 4/21/2022
1.0.63-beta-3 180 4/20/2022
1.0.63-beta-2 182 4/20/2022
1.0.63-beta 168 4/19/2022
1.0.62-preview 185 4/15/2022
1.0.62-beta-6 174 4/14/2022
1.0.62-beta-5 180 4/14/2022
1.0.62-beta-4 163 4/14/2022
1.0.62-beta-3 185 4/13/2022
1.0.62-beta-2 189 4/11/2022
1.0.62-beta 167 4/11/2022
1.0.61-preview 189 4/7/2022
1.0.61-beta 156 4/7/2022
1.0.60-preview 171 4/6/2022
1.0.59-preview 183 4/6/2022
1.0.59-beta 153 4/6/2022
1.0.58-beta-6 167 4/6/2022
1.0.58-beta-5 186 4/5/2022
1.0.58-beta-4 171 4/5/2022
1.0.58-beta-3 178 4/5/2022
1.0.58-beta-2 177 4/5/2022
1.0.58-beta 168 4/5/2022
1.0.56-preview 180 4/1/2022
1.0.56-beta-9 183 3/28/2022
1.0.56-beta-8 192 3/28/2022
1.0.56-beta-7 189 3/28/2022
1.0.56-beta-6 177 3/28/2022
1.0.56-beta-5 177 3/25/2022
1.0.56-beta-4 147 3/24/2022
1.0.56-beta-3 162 3/22/2022
1.0.56-beta-2 167 3/22/2022
1.0.56-beta-14 181 3/29/2022
1.0.56-beta-13 169 3/28/2022
1.0.56-beta-12 177 3/28/2022
1.0.56-beta-11 195 3/28/2022
1.0.56-beta-10 193 3/28/2022
1.0.56-beta 176 3/22/2022
1.0.55-preview 200 3/22/2022
1.0.54-preview 204 3/16/2022
1.0.53-preview 161 3/16/2022
1.0.52-preview 178 3/16/2022
1.0.51-preview 158 3/15/2022
1.0.50-preview 182 3/9/2022
1.0.49-preview 176 3/3/2022
1.0.48-preview 202 2/23/2022
1.0.47-preview 715 2/21/2022
1.0.46-preview 311 2/21/2022
1.0.45-preview 192 2/18/2022
1.0.43-preview 197 2/16/2022
1.0.42-preview 197 2/10/2022
1.0.41-preview 172 2/10/2022
1.0.40-preview 192 2/10/2022
1.0.39-preview 193 2/7/2022
1.0.38-preview 189 2/4/2022
1.0.37-preview 197 2/4/2022
1.0.36-preview 212 1/25/2022
1.0.35-preview 206 1/25/2022
1.0.34-preview 192 1/25/2022
1.0.33-preview 201 1/13/2022
1.0.32-preview 195 1/13/2022
1.0.31-preview 196 1/13/2022
1.0.30-preview 192 1/13/2022
1.0.29-preview 191 1/13/2022
1.0.28-preview 188 1/12/2022
1.0.27-preview 187 1/12/2022
1.0.26-preview 204 1/12/2022
1.0.25-preview 296 1/10/2022
1.0.24-preview 200 1/6/2022
1.0.23-preview 184 1/4/2022
1.0.22-preview 182 12/15/2021
1.0.21-preview 260 12/14/2021
1.0.20-preview 319 12/14/2021
1.0.19-preview 226 12/10/2021
1.0.18-preview 199 12/9/2021
1.0.17-preview 420 12/9/2021
1.0.16-preview 173 12/9/2021
1.0.15-preview 207 12/9/2021
1.0.14-preview 213 12/9/2021
1.0.13-preview 214 12/9/2021
1.0.12-preview 218 12/9/2021
1.0.10-preview 199 12/8/2021
1.0.9-preview 201 12/7/2021
1.0.8-preview 219 12/7/2021
1.0.7-preview 189 12/7/2021
1.0.6-preview 219 12/7/2021
1.0.4-preview 197 12/3/2021
1.0.3-preview 209 12/3/2021
1.0.2-preview 198 12/3/2021
1.0.1-preview 198 12/2/2021
1.0.0-preview 216 12/2/2021