-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add BamlReflector tool to samples (#98)
* Add BamlReflector Files * update solutions to include BamlReflector
- Loading branch information
1 parent
762cf66
commit 507891f
Showing
31 changed files
with
5,061 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.