Skip to content

Commit

Permalink
Add BamlReflector tool to samples (#98)
Browse files Browse the repository at this point in the history
* Add BamlReflector Files
* update solutions to include BamlReflector
  • Loading branch information
vatsan-madhavan authored Jul 25, 2019
1 parent 762cf66 commit 507891f
Show file tree
Hide file tree
Showing 31 changed files with 5,061 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Tools/BamlReflector/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
################################################################################
# This .gitignore file was automatically created by Microsoft(R) Visual Studio.
################################################################################

/.vs/*
/BamlTools/bin/*
/BamlTools/obj/*
/BamlReflector/obj/*
/BamlReflector/bin/*
27 changes: 27 additions & 0 deletions Tools/BamlReflector/BamlReflector.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.28927.53
Project("{F9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BamlReflector", "BamlReflector\BamlReflector.csproj", "{EBEB76C6-B21C-440C-ABD3-EF6037F1E1B4}"
EndProject
Project("{F9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BamlTools", "BamlTools\BamlTools.csproj", "{4387B89C-4E01-499E-B2A2-31E74E319354}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{EBEB76C6-B21C-440C-ABD3-EF6037F1E1B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EBEB76C6-B21C-440C-ABD3-EF6037F1E1B4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EBEB76C6-B21C-440C-ABD3-EF6037F1E1B4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EBEB76C6-B21C-440C-ABD3-EF6037F1E1B4}.Release|Any CPU.Build.0 = Release|Any CPU
{4387B89C-4E01-499E-B2A2-31E74E319354}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4387B89C-4E01-499E-B2A2-31E74E319354}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4387B89C-4E01-499E-B2A2-31E74E319354}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4387B89C-4E01-499E-B2A2-31E74E319354}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
14 changes: 14 additions & 0 deletions Tools/BamlReflector/BamlReflector/App.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!--
Licensed to the .NET Foundation under one or more agreements.
The .NET Foundation licenses this file to you under the MIT license.
See the LICENSE file in the project root for more information.
-->

<Application x:Class="BamlReflector.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="Window1.xaml">
<Application.Resources>

</Application.Resources>
</Application>
15 changes: 15 additions & 0 deletions Tools/BamlReflector/BamlReflector/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using System.Windows;

namespace BamlReflector
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}
12 changes: 12 additions & 0 deletions Tools/BamlReflector/BamlReflector/BamlReflector.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>netcoreapp3.0</TargetFrameworks>
<UseWpf>true</UseWpf>
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\BamlTools\BamlTools.csproj" />
</ItemGroup>
</Project>
Loading

0 comments on commit 507891f

Please sign in to comment.