version update 0.22.9 -> 0.22.10

This commit is contained in:
Kamil Szostak 2016-05-02 12:33:27 -07:00
Родитель 4805a415ba
Коммит 4e395d980b
4 изменённых файлов: 78 добавлений и 101 удалений

Просмотреть файл

@ -1,22 +1,19 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- This file (Global.props) must be included into all projects in all solutions of this product. -->
<!-- This file (Global.props) must be included into all projects in all solutions of this product. --> <!-- It defines common build paths and infrastructure. -->
<!-- It defines common build paths and infrastructure. --> <!-- Other products / repositories using the same build pattern will have an own copy of copy this file -->
<!-- Other products / repositories using the same build pattern will have an own copy of copy this file --> <!-- Project file location for the Import statement: -->
<!-- * You MUST include this file towards the bottom of each respective project file, * -->
<!-- Project file location for the Import statement: --> <!-- * BELOW all local definitions, RIGHT ABOVE the targets import. * -->
<!-- * You MUST include this file towards the bottom of each respective project file, * --> <!-- * For example, right above this line: * -->
<!-- * BELOW all local definitions, RIGHT ABOVE the targets import. * --> <!-- * <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> * -->
<!-- * For example, right above this line: * --> <!-- There are two easy ways to import this file. The shortest way is to write something like: -->
<!-- * <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> * --> <!-- <Import Project="..\..\Global.props" /> -->
<!-- However, you will need to match the number of "..\" segments to the respective location of each project file in -->
<!-- There are two easy ways to import this file. The shortest way is to write something like: --> <!-- your sourcce tree. A more robust approach is to include the following code. It can stay the same regardless of -->
<!-- <Import Project="..\..\Global.props" /> --> <!-- your project file location: -->
<!-- However, you will need to match the number of "..\" segments to the respective location of each project file in --> <!--
<!-- your sourcce tree. A more robust approach is to include the following code. It can stay the same regardless of -->
<!-- your project file location: -->
<!--
<PropertyGroup Label="Include_Common_Build_Properties"> <PropertyGroup Label="Include_Common_Build_Properties">
<CommonBuildPropsLocation>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'EnlistmentRoot.marker'))</CommonBuildPropsLocation> <CommonBuildPropsLocation>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'EnlistmentRoot.marker'))</CommonBuildPropsLocation>
</PropertyGroup> </PropertyGroup>
@ -24,84 +21,67 @@
<Import Project="$(CommonBuildPropsLocation)\Global.props" /> <Import Project="$(CommonBuildPropsLocation)\Global.props" />
</ImportGroup> </ImportGroup>
--> -->
<PropertyGroup>
<PropertyGroup> <!-- The common project structure looks like this: -->
<!-- The common project structure looks like this: --> <!-- d:\DDGit\ -->
<!-- d:\DDGit\ --> <!-- ServiceFoo\ -->
<!-- ServiceFoo\ --> <!-- Bin\ -->
<!-- Bin\ --> <!-- Obj\ -->
<!-- Obj\ --> <!-- Packages\ -->
<!-- Packages\ --> <!-- Src\ -->
<!-- Src\ --> <!-- .git\ -->
<!-- .git\ --> <!-- .nuget\ -->
<!-- .nuget\ --> <!-- Global.props -->
<!-- Global.props --> <!-- SomeProjectFolderA\ -->
<!-- SomeProjectFolderA\ --> <!-- NuGet.config -->
<!-- NuGet.config --> <!-- SomeProjectA.sln -->
<!-- SomeProjectA.sln --> <!-- ... -->
<!-- ... --> <!-- SomeProjectFolderB\ -->
<!-- SomeProjectFolderB\ --> <!-- ... -->
<!-- ... --> <!-- EnlistmentRoot.marker -->
<!-- EnlistmentRoot.marker --> <!-- ServiceBar\ -->
<!-- ServiceBar\ --> <!-- Bin\ -->
<!-- Bin\ --> <!-- Obj\ -->
<!-- Obj\ --> <!-- Packages\ -->
<!-- Packages\ --> <!-- Src\ -->
<!-- Src\ --> <!-- ... -->
<!-- ... --> <!-- -->
<!-- --> <!-- The Bin folder contains ALL build output. -->
<!-- The Bin folder contains ALL build output. --> <!-- The Obj folder contains all intermediate build files (like the obj folder). -->
<!-- The Obj folder contains all intermediate build files (like the obj folder). --> <!-- The Packages folder contains ALL packages downloaded by NuGet. -->
<!-- The Packages folder contains ALL packages downloaded by NuGet. --> <!-- The above folders contain NOTHING that is checked in (they are not checked in themselves). -->
<!-- The above folders contain NOTHING that is checked in (they are not checked in themselves). --> <!-- The Src folder contains EVERHYTHNG that is checked in and ALL that is checked in. -->
<!-- The Src folder contains EVERHYTHNG that is checked in and ALL that is checked in. --> <!-- No build output or temp files should end up in the Src folder! (barring a few *small* VS temporaries) -->
<!-- No build output or temp files should end up in the Src folder! (barring a few *small* VS temporaries) --> <!-- -->
<!-- --> <!-- Src MUST contain the EnlistmentRoot.marker file which marks the EnlistmentRoot. -->
<!-- Src MUST contain the EnlistmentRoot.marker file which marks the EnlistmentRoot. --> <!-- Src also contains the NuGet.config file which ensures that NuGet uses the NuGet.Packages folder. -->
<!-- Src also contains the NuGet.config file which ensures that NuGet uses the NuGet.Packages folder. --> <EnlistmentRoot>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'EnlistmentRoot.marker'))</EnlistmentRoot>
<BinRoot>$(EnlistmentRoot)\..\bin</BinRoot>
<EnlistmentRoot>$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'EnlistmentRoot.marker'))</EnlistmentRoot> <BinRoot>$([System.IO.Path]::GetFullPath( $(BinRoot) ))</BinRoot>
<RelativeOutputPathBase>$(MSBuildProjectDirectory.Substring($(EnlistmentRoot.Length)))</RelativeOutputPathBase>
<BinRoot>$(EnlistmentRoot)\..\bin</BinRoot> <BaseIntermediateOutputPath>$(EnlistmentRoot)\..\obj</BaseIntermediateOutputPath>
<BinRoot>$([System.IO.Path]::GetFullPath( $(BinRoot) ))</BinRoot> <BaseIntermediateOutputPath>$([System.IO.Path]::GetFullPath( $(BaseIntermediateOutputPath) ))</BaseIntermediateOutputPath>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<RelativeOutputPathBase>$(MSBuildProjectDirectory.Substring($(EnlistmentRoot.Length)))</RelativeOutputPathBase> <OutputPath>$(BinRoot)\$(Configuration)\$(RelativeOutputPathBase)</OutputPath>
<OutputPath>$([System.IO.Path]::GetFullPath( $(OutputPath) ))\</OutputPath>
<BaseIntermediateOutputPath>$(EnlistmentRoot)\..\obj</BaseIntermediateOutputPath> <!-- Collect all NuGet packages in the same folder for convenience during testing -->
<BaseIntermediateOutputPath>$([System.IO.Path]::GetFullPath( $(BaseIntermediateOutputPath) ))</BaseIntermediateOutputPath> <PackageOutputDir>$(BinRoot)\$(Configuration)\NuGet</PackageOutputDir>
<AppxPackageDir>$(OutputPath)</AppxPackageDir>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <IntermediateOutputPath>$(BaseIntermediateOutputPath)\$(Configuration)\$(RelativeOutputPathBase)</IntermediateOutputPath>
<IntermediateOutputPath>$([System.IO.Path]::GetFullPath( $(IntermediateOutputPath) ))\</IntermediateOutputPath>
<OutputPath>$(BinRoot)\$(Configuration)\$(RelativeOutputPathBase)</OutputPath> <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">$(EnlistmentRoot)\</SolutionDir>
<OutputPath>$([System.IO.Path]::GetFullPath( $(OutputPath) ))\</OutputPath> <PackagesDir>$(EnlistmentRoot)\..\packages</PackagesDir>
<PackagesDir>$([System.IO.Path]::GetFullPath( $(PackagesDir) ))</PackagesDir>
<!-- Collect all NuGet packages in the same folder for convenience during testing --> </PropertyGroup>
<PackageOutputDir>$(BinRoot)\$(Configuration)\NuGet</PackageOutputDir> <PropertyGroup>
<!-- Enable NuGet package restore during build -->
<AppxPackageDir>$(OutputPath)</AppxPackageDir> <RestorePackages>true</RestorePackages>
<RequireRestoreConsent>false</RequireRestoreConsent>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)\$(Configuration)\$(RelativeOutputPathBase)</IntermediateOutputPath> <!-- Set the root namespace for all assemblies in this project hierarchy -->
<IntermediateOutputPath>$([System.IO.Path]::GetFullPath( $(IntermediateOutputPath) ))\</IntermediateOutputPath> <RootNamespace>Microsoft.ApplicationInsights</RootNamespace>
<!-- Disable StyleCop by default to prevent StyleCop.MSBuild package from slowing down the debug build -->
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">$(EnlistmentRoot)\</SolutionDir> <StyleCopEnabled>false</StyleCopEnabled>
</PropertyGroup>
<PackagesDir>$(EnlistmentRoot)\..\packages</PackagesDir>
<PackagesDir>$([System.IO.Path]::GetFullPath( $(PackagesDir) ))</PackagesDir>
</PropertyGroup>
<PropertyGroup>
<!-- Enable NuGet package restore during build -->
<RestorePackages>true</RestorePackages>
<RequireRestoreConsent>false</RequireRestoreConsent>
<!-- Set the root namespace for all assemblies in this project hierarchy -->
<RootNamespace>Microsoft.ApplicationInsights</RootNamespace>
<!-- Disable StyleCop by default to prevent StyleCop.MSBuild package from slowing down the debug build -->
<StyleCopEnabled>false</StyleCopEnabled>
</PropertyGroup>
<!-- Generate AssemblyFileVersion and AssemblyVersion attributes. --> <!-- Generate AssemblyFileVersion and AssemblyVersion attributes. -->
<PropertyGroup> <PropertyGroup>
<!-- <!--
@ -110,20 +90,17 @@
--> -->
<SemanticVersionMajor>0</SemanticVersionMajor> <SemanticVersionMajor>0</SemanticVersionMajor>
<SemanticVersionMinor>22</SemanticVersionMinor> <SemanticVersionMinor>22</SemanticVersionMinor>
<SemanticVersionPatch>9</SemanticVersionPatch> <SemanticVersionPatch>10</SemanticVersionPatch>
<!-- <!--
Date when Semantic Version was changed. Date when Semantic Version was changed.
Update for every public release. Update for every public release.
--> -->
<SemanticVersionDate>2016-03-22</SemanticVersionDate> <SemanticVersionDate>2016-05-02</SemanticVersionDate>
<!-- <!--
Pre-release version is used to distinguish internally built NuGet packages. Pre-release version is used to distinguish internally built NuGet packages.
Pre-release version = Minutes since semantic version was set, divided by 5 (to make it fit in a UInt16). Pre-release version = Minutes since semantic version was set, divided by 5 (to make it fit in a UInt16).
--> -->
<PreReleaseVersion>$([MSBuild]::Divide($([System.DateTime]::Now.Subtract($([System.DateTime]::Parse($(SemanticVersionDate)))).TotalMinutes), 5).ToString('F0'))</PreReleaseVersion> <PreReleaseVersion>$([MSBuild]::Divide($([System.DateTime]::Now.Subtract($([System.DateTime]::Parse($(SemanticVersionDate)))).TotalMinutes), 5).ToString('F0'))</PreReleaseVersion>
<!-- Turn on dynamic assembly attribute generation --> <!-- Turn on dynamic assembly attribute generation -->
<AssemblyAttributesPath>$(IntermediateOutputPath)\AssemblyInfo.g.cs</AssemblyAttributesPath> <AssemblyAttributesPath>$(IntermediateOutputPath)\AssemblyInfo.g.cs</AssemblyAttributesPath>
<GenerateAdditionalSources>true</GenerateAdditionalSources> <GenerateAdditionalSources>true</GenerateAdditionalSources>
@ -140,4 +117,4 @@
<_Parameter1>$(SemanticVersionMajor).$(SemanticVersionMinor).$(SemanticVersionPatch).$(PreReleaseVersion)</_Parameter1> <_Parameter1>$(SemanticVersionMajor).$(SemanticVersionMinor).$(SemanticVersionPatch).$(PreReleaseVersion)</_Parameter1>
</AssemblyAttributes> </AssemblyAttributes>
</ItemGroup> </ItemGroup>
</Project> </Project>

Двоичные данные
JavaScript/JavaScriptSDK/AppInsights.ts

Двоичный файл не отображается.

Двоичные данные
bower.json

Двоичный файл не отображается.

Двоичные данные
package.json

Двоичный файл не отображается.