Clarius.VisualStudio
2.0.1
See the version list below for details.
dotnet add package Clarius.VisualStudio --version 2.0.1
NuGet\Install-Package Clarius.VisualStudio -Version 2.0.1
<PackageReference Include="Clarius.VisualStudio" Version="2.0.1"> <PrivateAssets>all</PrivateAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> </PackageReference>
paket add Clarius.VisualStudio --version 2.0.1
#r "nuget: Clarius.VisualStudio, 2.0.1"
// Install Clarius.VisualStudio as a Cake Addin #addin nuget:?package=Clarius.VisualStudio&version=2.0.1 // Install Clarius.VisualStudio as a Cake Tool #tool nuget:?package=Clarius.VisualStudio&version=2.0.1
Common targets to create version-aware Visual Studio extensions easily.
Learn more about Target Frameworks and .NET Standard.
-
- MSBuilder (>= 0.1.0)
- MSBuilder.CodeTaskAssembly (>= 0.2.4)
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 |
---|---|---|
2.0.14 | 6,941 | 6/16/2017 |
2.0.13 | 1,430 | 3/1/2017 |
2.0.12 | 1,923 | 1/17/2017 |
2.0.11 | 1,036 | 1/12/2017 |
2.0.10 | 1,036 | 1/6/2017 |
2.0.9 | 1,046 | 1/6/2017 |
2.0.8 | 1,049 | 1/6/2017 |
2.0.7 | 3,652 | 1/4/2017 |
2.0.6 | 1,076 | 1/4/2017 |
2.0.5 | 1,074 | 12/14/2016 |
2.0.4 | 1,081 | 12/13/2016 |
2.0.3 | 1,049 | 12/6/2016 |
2.0.2 | 1,136 | 11/23/2016 |
2.0.1 | 1,050 | 11/17/2016 |
2.0.0 | 999 | 11/17/2016 |
1.3.9 | 1,017 | 11/17/2016 |
1.3.8 | 1,001 | 11/17/2016 |
1.3.7 | 1,557 | 5/11/2016 |
1.3.6 | 1,156 | 3/31/2016 |
1.3.5 | 988 | 3/31/2016 |
1.3.4 | 1,085 | 3/16/2016 |
1.3.3 | 1,046 | 3/16/2016 |
1.3.2 | 1,061 | 3/15/2016 |
1.3.1 | 1,060 | 3/15/2016 |
1.1.18 | 1,005 | 3/15/2016 |
1.1.17 | 1,058 | 3/16/2016 |
1.1.16 | 2,510 | 12/9/2014 |
1.1.13 | 1,357 | 11/26/2014 |
1.1.12 | 1,276 | 11/25/2014 |
1.1.10 | 2,461 | 9/11/2014 |
1.1.9 | 1,227 | 8/22/2014 |
1.1.7 | 1,325 | 5/30/2014 |
1.1.6 | 1,327 | 5/29/2014 |
1.1.5 | 1,346 | 1/28/2014 |
1.1.4 | 1,271 | 1/28/2014 |
1.1.3 | 1,209 | 1/28/2014 |
1.1.2 | 1,304 | 1/27/2014 |
1.1.1 | 1,217 | 1/27/2014 |
1.1.0 | 1,254 | 1/24/2014 |
1.0.5 | 1,378 | 1/13/2014 |
Release Notes:
v1.1.
* Updated for VS2017
* Adds properties:
* Dev: simple version number from Visual Studio version, without the decimal (i.e. '15')
* Adds DEV[n] defined constant for conditional code compilation (i.e. #if DEV15, to compile
only when building for VS2017)
v1.1.
* Smarter and simpler template authoring. Just set BuildAction to None on all your
template content as well as the .vstemplate, and they become Smart Templates automatically:
* Supports <Include> metadata to add shared artifacts to the generated ZIP files
* Does not regenerate ZIP files if content didn't change
* Supports linked files that are copied to the output directory
* Sets up the project to always start by running devenv.exe in the experimental
instance and with logging enabled for easy error diagnostics.
v1.0
* Provides the following MSBuild properties for version-aware projects:
* VisualStudioVersion: for VS2010, sets it to '10.0'
* MinimumVisualStudioVersion: equals VisualStudioVersion to allow opening on any version
* DevEnvDir: if it's empty, for safe command-line building. Can be overriden.
* PublicAssemblies: $(DevEnvDir)\PublicAssemblies\
* PrivateAssemblies: $(DevEnvDir)\PrivateAssemblies\
* VSSDK: the [VSSDK install directory]\VisualStudioIntegration\Common\Assemblies\ folder. Can be overriden.
* VSSDK20: $(VSSDK)v2.0\
* VSSDK40: $(VSSDK)v4.0\
* VSToolsPath: path to the MSBuild targets for the VSSDK