Skip to content

Commit c48b2b6

Browse files
TELERIK\JustDecompBuildUserTELERIK\JustDecompBuildUser
TELERIK\JustDecompBuildUser
authored and
TELERIK\JustDecompBuildUser
committed
Auto-Build: Version Update [***NO_CI***]
1 parent 43b4e22 commit c48b2b6

5 files changed

+38
-53
lines changed

Diff for: CommonAssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
using System.Reflection;
22

3-
[assembly: AssemblyVersion("2015.2.710.0")]
4-
[assembly: AssemblyFileVersion("2015.2.710.0")]
3+
[assembly: AssemblyVersion("2015.2.716.0")]
4+
[assembly: AssemblyFileVersion("2015.2.716.0")]

Diff for: JustDecompile.ReflexilPlugin.sln

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Global
3131
GlobalSection(TeamFoundationVersionControl) = preSolution
3232
SccNumberOfProjects = 11
3333
SccEnterpriseProvider = {4CA58AB2-18FA-4F8D-95D4-32DDF27D184C}
34-
SccTeamFoundationServer = http://tfs:8082/defaultcollection
34+
SccTeamFoundationServer = http://tfs:8082/
3535
SccLocalPath0 = .
3636
SccProjectUniqueName1 = Reflexil.JustDecompile\\reflexil.1.8.src\\Reflexil.csproj
3737
SccProjectTopLevelParentUniqueName1 = JustDecompile.ReflexilPlugin.sln

Diff for: Reflexil.JustDecompile/MenuItems/ModuleDefinitionContextMenu.cs

-2
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,6 @@ private void OnSaveAs()
117117
{
118118
item.TreeNodeVisuals.SetForeground(null);
119119
}
120-
}
121-
}
122120
}
123121
}
124122

Diff for: Reflexil.JustDecompile/Reflexil.JustDecompile.Module.csproj

+4-5
Original file line numberDiff line numberDiff line change
@@ -151,28 +151,27 @@
151151
<Resource Include="Images\gray_close_button.png" />
152152
<Content Include="PluginConfig.xml">
153153
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
154+
<SubType>Designer</SubType>
154155
</Content>
155156
</ItemGroup>
156-
<ItemGroup>
157+
<!--<ItemGroup>
157158
<Resource Include="Images\gray_close_button.png" />
158159
</ItemGroup>
159160
<ItemGroup>
160161
<None Include="PluginConfig.xml">
161162
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
162163
<SubType>Designer</SubType>
163164
</None>
164-
</ItemGroup>
165+
</ItemGroup>-->
165166
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
166167
<!--<PropertyGroup>
167168
<PreBuildEvent>"$(MsbuildBinPath)\msbuild" "$(SolutionDir)JustDecompileApi.sln" /p:Configuration=ReleaseInternal</PreBuildEvent>
168169
</PropertyGroup>-->
169-
</PreBuildEvent>
170-
</PropertyGroup>
171170
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
172171
Other similar extension points exist, see Microsoft.Common.targets.
173172
<Target Name="BeforeBuild">
174173
</Target>
175174
<Target Name="AfterBuild">
176175
</Target>
177176
-->
178-
</Project>
177+
</Project>

Diff for: Reflexil.JustDecompile/ReflexilHost.xaml

+31-43
Original file line numberDiff line numberDiff line change
@@ -11,68 +11,56 @@
1111
<RowDefinition Height="*" />
1212
</Grid.RowDefinitions>
1313

14-
<Grid Height="20"
14+
<Grid Height="20"
1515
VerticalAlignment="Top"
1616
Background="#FFC1DBFC">
17-
<Grid.ColumnDefinitions>
18-
<ColumnDefinition />
17+
<Grid.ColumnDefinitions>
18+
<ColumnDefinition />
1919
<ColumnDefinition />
2020
</Grid.ColumnDefinitions>
2121

22-
<TextBlock x:Name="header"
22+
<TextBlock x:Name="header"
2323
Margin="5 2 0 0"
2424
Text="{Binding Header}" />
2525

26-
26+
2727
<Button x:Name="btnClose"
2828
Grid.Column="1"
2929
Margin="0 2 4 0"
3030
HorizontalAlignment="Right"
3131
Cursor="Hand">
32-
<Button.Style>
33-
<Style TargetType="{x:Type Button}">
34-
<Setter Property="Opacity" Value=".8" />
35-
<Setter Property="Template">
36-
<Setter.Value>
37-
<ControlTemplate TargetType="{x:Type Button}">
38-
<Grid x:Name="root">
39-
<ContentPresenter />
40-
</Grid>
41-
</ControlTemplate>
42-
</Setter.Value>
43-
</Setter>
44-
<Style.Triggers>
45-
<Trigger Property="IsEnabled" Value="false">
46-
<Setter Property="Visibility" Value="Collapsed" />
47-
</Trigger>
48-
<Trigger Property="IsMouseOver" Value="True">
49-
<Setter Property="Opacity" Value="1" />
50-
</Trigger>
51-
<Trigger Property="IsPressed" Value="True">
52-
<Setter Property="Opacity" Value=".8" />
53-
</Trigger>
54-
</Style.Triggers>
55-
</Style>
56-
</Button.Style>
57-
<Image Width="13"
32+
<Button.Style>
33+
<Style TargetType="{x:Type Button}">
34+
<Setter Property="Opacity" Value=".8" />
35+
<Setter Property="Template">
36+
<Setter.Value>
37+
<ControlTemplate TargetType="{x:Type Button}">
38+
<Grid x:Name="root">
39+
<ContentPresenter />
40+
</Grid>
41+
</ControlTemplate>
42+
</Setter.Value>
43+
</Setter>
44+
<Style.Triggers>
45+
<Trigger Property="IsEnabled" Value="false">
46+
<Setter Property="Visibility" Value="Collapsed" />
47+
</Trigger>
48+
<Trigger Property="IsMouseOver" Value="True">
49+
<Setter Property="Opacity" Value="1" />
50+
</Trigger>
51+
<Trigger Property="IsPressed" Value="True">
52+
<Setter Property="Opacity" Value=".8" />
53+
</Trigger>
54+
</Style.Triggers>
55+
</Style>
56+
</Button.Style>
57+
<Image Width="13"
5858
Height="13"
5959
Source="Images/gray_close_button.png" />
60-
</Button>
61-
</Grid>
62-
<Image Width="13"
63-
Height="13"
64-
Source="Images/gray_close_button.png" />
6560
</Button>
6661
</Grid>
6762

6863
<Grid x:Name="root"
69-
Grid.Row="1"
70-
Margin="0 2 0 0"
71-
SizeChanged="RootSizeChanged" />
72-
73-
</Grid>
74-
75-
<Grid x:Name="root"
7664
Grid.Row="1"
7765
Margin="0 2 0 0"
7866
SizeChanged="RootSizeChanged" />

0 commit comments

Comments
 (0)