Merged PR 20056: Merged PR 19701: Hotfix (0.4.216.3)

Publish Psi.Data package.
Fixed color scheme for AddAnnotation dialog.

Related work items: #37768
This commit is contained in:
Nick Saw 2018-07-18 01:21:18 +00:00
Родитель ab56881cb6
Коммит 781d32638b
21 изменённых файлов: 46 добавлений и 44 удалений

Двоичные данные
Directory.Build.props

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

Двоичные данные
Samples/KinectSample/Properties/AssemblyInfo.cs

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

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

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

Двоичные данные
Samples/SpeechSample/Properties/AssemblyInfo.cs

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

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

Двоичные данные
Samples/WpfSample/Properties/AssemblyInfo.cs

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

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

@ -1,39 +1,40 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard2.0\Microsoft.Psi.Data.xml</DocumentationFile>
<CodeAnalysisRuleSet>../../../Build/Microsoft.Psi.ruleset</CodeAnalysisRuleSet>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\Microsoft.Psi.Data.xml</DocumentationFile>
<CodeAnalysisRuleSet>../../../Build/Microsoft.Psi.ruleset</CodeAnalysisRuleSet>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup>
<None Remove="stylecop.json" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="stylecop.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2" PrivateAssets="All" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.1" />
<PackageReference Include="Newtonsoft.Json.Schema" Version="3.0.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Runtime\Microsoft.Psi\Microsoft.Psi.csproj" />
</ItemGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard2.0\Microsoft.Psi.Data.xml</DocumentationFile>
<CodeAnalysisRuleSet>../../../Build/Microsoft.Psi.ruleset</CodeAnalysisRuleSet>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\Microsoft.Psi.Data.xml</DocumentationFile>
<CodeAnalysisRuleSet>../../../Build/Microsoft.Psi.ruleset</CodeAnalysisRuleSet>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup>
<None Remove="stylecop.json" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="stylecop.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2" PrivateAssets="All" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.1" />
<PackageReference Include="Newtonsoft.Json.Schema" Version="3.0.9" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Runtime\Microsoft.Psi\Microsoft.Psi.csproj" />
</ItemGroup>
</Project>

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

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

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

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

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

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

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

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

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

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

@ -10,31 +10,32 @@
SizeToContent="WidthAndHeight"
Title="Add Annotation"
WindowStartupLocation="CenterOwner"
WindowStyle="SingleBorderWindow">
WindowStyle="SingleBorderWindow"
Background="{StaticResource WindowBackgroundBrush}">
<Grid Grid.IsSharedSizeScope="True">
<Grid.Resources>
<Style TargetType="Label">
<Style TargetType="Label" BasedOn="{StaticResource {x:Type Label}}">
<Setter Property="HorizontalAlignment" Value="Right" />
<Setter Property="Margin" Value="10,2,2,2" />
<Setter Property="VerticalAlignment" Value="Center" />
</Style>
<Style TargetType="TextBox">
<Style TargetType="TextBox" BasedOn="{StaticResource {x:Type TextBox}}">
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="Margin" Value="2,2,10,2" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Width" Value="180" />
</Style>
<Style TargetType="ComboBox">
<Style TargetType="ComboBox" BasedOn="{StaticResource {x:Type ComboBox}}">
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="Margin" Value="2,2,10,2" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Width" Value="180" />
</Style>
<Style TargetType="Button">
<Style TargetType="Button" BasedOn="{StaticResource {x:Type Button}}">
<Setter Property="Height" Value="20" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Width" Value="80" />

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

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