Skip to content

Commit fe61fce

Browse files
committed
Make the app look a bit nicer :-)
1 parent b2d962e commit fe61fce

11 files changed

Lines changed: 702 additions & 6 deletions

File tree

JavaToCSharp.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JavaToCSharpCli", "JavaToCS
1313
EndProject
1414
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JavaToCSharpGui", "JavaToCSharpGui\JavaToCSharpGui.csproj", "{DAA3F412-0460-40C3-98F7-3244649820F9}"
1515
EndProject
16+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebPageLauncher", "WebPageLauncher\WebPageLauncher.csproj", "{8C687DDF-1458-4918-B21E-E703DD971334}"
17+
EndProject
1618
Global
1719
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1820
Debug|Any CPU = Debug|Any CPU
@@ -31,6 +33,10 @@ Global
3133
{DAA3F412-0460-40C3-98F7-3244649820F9}.Debug|Any CPU.Build.0 = Debug|Any CPU
3234
{DAA3F412-0460-40C3-98F7-3244649820F9}.Release|Any CPU.ActiveCfg = Release|Any CPU
3335
{DAA3F412-0460-40C3-98F7-3244649820F9}.Release|Any CPU.Build.0 = Release|Any CPU
36+
{8C687DDF-1458-4918-B21E-E703DD971334}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
37+
{8C687DDF-1458-4918-B21E-E703DD971334}.Debug|Any CPU.Build.0 = Debug|Any CPU
38+
{8C687DDF-1458-4918-B21E-E703DD971334}.Release|Any CPU.ActiveCfg = Release|Any CPU
39+
{8C687DDF-1458-4918-B21E-E703DD971334}.Release|Any CPU.Build.0 = Release|Any CPU
3440
EndGlobalSection
3541
GlobalSection(SolutionProperties) = preSolution
3642
HideSolutionNode = FALSE

JavaToCSharpGui/JavaToCSharpGui.csproj

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
<DefineConstants>DEBUG;TRACE</DefineConstants>
2424
<ErrorReport>prompt</ErrorReport>
2525
<WarningLevel>4</WarningLevel>
26+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2627
</PropertyGroup>
2728
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2829
<PlatformTarget>AnyCPU</PlatformTarget>
@@ -140,6 +141,9 @@
140141
<Reference Include="javaparser-1.0.11-SNAPSHOT">
141142
<HintPath>..\Lib\javaparser-1.0.11-SNAPSHOT.dll</HintPath>
142143
</Reference>
144+
<Reference Include="MahApps.Metro">
145+
<HintPath>..\packages\MahApps.Metro.0.10.1.1\lib\net45\MahApps.Metro.dll</HintPath>
146+
</Reference>
143147
<Reference Include="Roslyn.Compilers, Version=1.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
144148
<Private>True</Private>
145149
<HintPath>..\packages\Roslyn.Compilers.Common.1.2.20906.2\lib\net45\Roslyn.Compilers.dll</HintPath>
@@ -171,7 +175,7 @@
171175
<Reference Include="System" />
172176
<Reference Include="System.Data" />
173177
<Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
174-
<HintPath>..\packages\Caliburn.Micro.1.5.2\lib\net45\System.Windows.Interactivity.dll</HintPath>
178+
<HintPath>..\packages\MahApps.Metro.0.10.1.1\lib\net45\System.Windows.Interactivity.dll</HintPath>
175179
</Reference>
176180
<Reference Include="System.Xml" />
177181
<Reference Include="Microsoft.CSharp" />
@@ -192,6 +196,7 @@
192196
</ApplicationDefinition>
193197
<Compile Include="AppBootstrapper.cs" />
194198
<Compile Include="IShell.cs" />
199+
<Compile Include="UrlLauncher\UrlLauncher.cs" />
195200
<Compile Include="ViewModels\ShellViewModel.cs" />
196201
<Compile Include="App.xaml.cs">
197202
<DependentUpon>App.xaml</DependentUpon>
@@ -235,6 +240,14 @@
235240
<Project>{edce2f7c-299e-4fea-870f-87c201fb2e43}</Project>
236241
<Name>JavaToCSharp</Name>
237242
</ProjectReference>
243+
<ProjectReference Include="..\WebPageLauncher\WebPageLauncher.csproj">
244+
<Project>{8c687ddf-1458-4918-b21e-e703dd971334}</Project>
245+
<Name>WebPageLauncher</Name>
246+
</ProjectReference>
247+
</ItemGroup>
248+
<ItemGroup>
249+
<Resource Include="JavaToCSharpIcon.ico" />
250+
<Resource Include="JavaToCSharpIcon.png" />
238251
</ItemGroup>
239252
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
240253
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
16.6 KB
Binary file not shown.
2.46 KB
Loading

0 commit comments

Comments
 (0)