-
Notifications
You must be signed in to change notification settings - Fork 13
Link forground and WP81 backport #11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
altima
wants to merge
2
commits into
QuinnDamerell:develop
Choose a base branch
from
altima:develop
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,30 @@ | ||
| using System.Resources; | ||
| using System.Reflection; | ||
| using System.Runtime.CompilerServices; | ||
| using System.Runtime.InteropServices; | ||
|
|
||
| // General Information about an assembly is controlled through the following | ||
| // set of attributes. Change these attribute values to modify the information | ||
| // associated with an assembly. | ||
| [assembly: AssemblyTitle("UniversalMarkdownPortable")] | ||
| [assembly: AssemblyDescription("")] | ||
| [assembly: AssemblyConfiguration("")] | ||
| [assembly: AssemblyCompany("")] | ||
| [assembly: AssemblyProduct("UniversalMarkdownPortable")] | ||
| [assembly: AssemblyCopyright("Copyright © 2016")] | ||
| [assembly: AssemblyTrademark("")] | ||
| [assembly: AssemblyCulture("")] | ||
| [assembly: NeutralResourcesLanguage("en")] | ||
|
|
||
| // Version information for an assembly consists of the following four values: | ||
| // | ||
| // Major Version | ||
| // Minor Version | ||
| // Build Number | ||
| // Revision | ||
| // | ||
| // You can specify all the values or you can default the Build and Revision Numbers | ||
| // by using the '*' as shown below: | ||
| // [assembly: AssemblyVersion("1.0.*")] | ||
| [assembly: AssemblyVersion("1.0.0.0")] | ||
| [assembly: AssemblyFileVersion("1.0.0.0")] |
150 changes: 150 additions & 0 deletions
150
UniversalMarkdownPortable/UniversalMarkdownPortable.csproj
This file contains hidden or 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,150 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
| <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
| <PropertyGroup> | ||
| <MinimumVisualStudioVersion>12.0</MinimumVisualStudioVersion> | ||
| <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
| <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
| <ProjectGuid>{8B5FC8A3-F9C7-4AFE-9BE9-F6377B7928D9}</ProjectGuid> | ||
| <OutputType>Library</OutputType> | ||
| <AppDesignerFolder>Properties</AppDesignerFolder> | ||
| <RootNamespace>UniversalMarkdownPortable</RootNamespace> | ||
| <AssemblyName>UniversalMarkdownPortable</AssemblyName> | ||
| <DefaultLanguage>en-US</DefaultLanguage> | ||
| <FileAlignment>512</FileAlignment> | ||
| <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
| <TargetFrameworkProfile>Profile32</TargetFrameworkProfile> | ||
| <TargetFrameworkVersion>v4.6</TargetFrameworkVersion> | ||
| </PropertyGroup> | ||
| <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
| <DebugSymbols>true</DebugSymbols> | ||
| <DebugType>full</DebugType> | ||
| <Optimize>false</Optimize> | ||
| <OutputPath>bin\Debug\</OutputPath> | ||
| <DefineConstants>DEBUG;TRACE</DefineConstants> | ||
| <ErrorReport>prompt</ErrorReport> | ||
| <WarningLevel>4</WarningLevel> | ||
| </PropertyGroup> | ||
| <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
| <DebugType>pdbonly</DebugType> | ||
| <Optimize>true</Optimize> | ||
| <OutputPath>bin\Release\</OutputPath> | ||
| <DefineConstants>TRACE</DefineConstants> | ||
| <ErrorReport>prompt</ErrorReport> | ||
| <WarningLevel>4</WarningLevel> | ||
| </PropertyGroup> | ||
| <ItemGroup> | ||
| <!-- A reference to the entire .NET Framework is automatically included --> | ||
| <Page Include="..\UniversalMarkdown\MarkdownTextBlock.xaml"> | ||
| <Link>MarkdownTextBlock.xaml</Link> | ||
| <Generator>MSBuild:Compile</Generator> | ||
| <SubType>Designer</SubType> | ||
| </Page> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <TargetPlatform Include="Windows, Version=8.1" /> | ||
| <TargetPlatform Include="WindowsPhoneApp, Version=8.1" /> | ||
| </ItemGroup> | ||
| <ItemGroup> | ||
| <Compile Include="..\UniversalMarkdown\Display\ILinkRegister.cs"> | ||
| <Link>Display\ILinkRegister.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Display\MarkdownTable.cs"> | ||
| <Link>Display\MarkdownTable.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Display\XamlRenderer.cs"> | ||
| <Link>Display\XamlRenderer.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Helpers\Common.cs"> | ||
| <Link>Helpers\Common.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Helpers\DebuggingReporter.cs"> | ||
| <Link>Helpers\DebuggingReporter.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Helpers\SmartWeakEvent.cs"> | ||
| <Link>Helpers\SmartWeakEvent.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\MarkdownTextBlock.xaml.cs"> | ||
| <Link>MarkdownTextBlock.xaml.cs</Link> | ||
| <DependentUpon>MarkdownTextBlock.xaml</DependentUpon> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Blocks\CodeBlock.cs"> | ||
| <Link>Parse\Blocks\CodeBlock.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Blocks\HeaderBlock.cs"> | ||
| <Link>Parse\Blocks\HeaderBlock.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Blocks\HorizontalRuleBlock.cs"> | ||
| <Link>Parse\Blocks\HorizontalRuleBlock.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Blocks\LinkReferenceBlock.cs"> | ||
| <Link>Parse\Blocks\LinkReferenceBlock.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Blocks\ListBlock.cs"> | ||
| <Link>Parse\Blocks\ListBlock.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Blocks\ParagraphBlock.cs"> | ||
| <Link>Parse\Blocks\ParagraphBlock.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Blocks\QuoteBlock.cs"> | ||
| <Link>Parse\Blocks\QuoteBlock.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Blocks\TableBlock.cs"> | ||
| <Link>Parse\Blocks\TableBlock.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Inlines\BoldTextInline.cs"> | ||
| <Link>Parse\Inlines\BoldTextInline.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Inlines\CodeInline.cs"> | ||
| <Link>Parse\Inlines\CodeInline.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Inlines\HyperlinkInline.cs"> | ||
| <Link>Parse\Inlines\HyperlinkInline.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Inlines\IInlineContainer.cs"> | ||
| <Link>Parse\Inlines\IInlineContainer.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Inlines\IInlineLeaf.cs"> | ||
| <Link>Parse\Inlines\IInlineLeaf.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Inlines\ILinkElement.cs"> | ||
| <Link>Parse\Inlines\ILinkElement.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Inlines\ItalicTextInline.cs"> | ||
| <Link>Parse\Inlines\ItalicTextInline.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Inlines\MarkdownLinkInline.cs"> | ||
| <Link>Parse\Inlines\MarkdownLinkInline.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Inlines\StrikethroughTextInline.cs"> | ||
| <Link>Parse\Inlines\StrikethroughTextInline.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Inlines\SuperscriptTextInline.cs"> | ||
| <Link>Parse\Inlines\SuperscriptTextInline.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\Inlines\TextRunInline.cs"> | ||
| <Link>Parse\Inlines\TextRunInline.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\MarkdownBlock.cs"> | ||
| <Link>Parse\MarkdownBlock.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\MarkdownDocument.cs"> | ||
| <Link>Parse\MarkdownDocument.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\MarkdownElement.cs"> | ||
| <Link>Parse\MarkdownElement.cs</Link> | ||
| </Compile> | ||
| <Compile Include="..\UniversalMarkdown\Parse\MarkdownInline.cs"> | ||
| <Link>Parse\MarkdownInline.cs</Link> | ||
| </Compile> | ||
| <Compile Include="Properties\AssemblyInfo.cs" /> | ||
| </ItemGroup> | ||
| <Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" /> | ||
| <!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
| Other similar extension points exist, see Microsoft.Common.targets. | ||
| <Target Name="BeforeBuild"> | ||
| </Target> | ||
| <Target Name="AfterBuild"> | ||
| </Target> | ||
| --> | ||
| </Project> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inside a quote block?