Skip to content

Commit

Permalink
remove old publisher and adding icon
Browse files Browse the repository at this point in the history
  • Loading branch information
juniorgasparotto committed Dec 17, 2017
1 parent a829bfd commit 523b3d9
Show file tree
Hide file tree
Showing 48 changed files with 97 additions and 4,587 deletions.
6 changes: 0 additions & 6 deletions src/MarkdownGenerator.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ VisualStudioVersion = 15.0.27130.2003
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MarkdownGenerator", "MarkdownGenerator\MarkdownGenerator.csproj", "{48389C66-CC10-4A4A-AF84-451D4BD94294}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MarkdownGenerator.Publish", "MarkdownGerenator.Publish\MarkdownGenerator.Publish.csproj", "{0273EA62-19D3-4775-92F9-8C574DCC28D5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Publisher", "Publisher\Publisher.csproj", "{65ED2D89-4716-48AD-A48B-1B4914023DB8}"
EndProject
Global
Expand All @@ -19,10 +17,6 @@ Global
{48389C66-CC10-4A4A-AF84-451D4BD94294}.Debug|Any CPU.Build.0 = Debug|Any CPU
{48389C66-CC10-4A4A-AF84-451D4BD94294}.Release|Any CPU.ActiveCfg = Release|Any CPU
{48389C66-CC10-4A4A-AF84-451D4BD94294}.Release|Any CPU.Build.0 = Release|Any CPU
{0273EA62-19D3-4775-92F9-8C574DCC28D5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0273EA62-19D3-4775-92F9-8C574DCC28D5}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0273EA62-19D3-4775-92F9-8C574DCC28D5}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0273EA62-19D3-4775-92F9-8C574DCC28D5}.Release|Any CPU.Build.0 = Release|Any CPU
{65ED2D89-4716-48AD-A48B-1B4914023DB8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{65ED2D89-4716-48AD-A48B-1B4914023DB8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{65ED2D89-4716-48AD-A48B-1B4914023DB8}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down
4 changes: 4 additions & 0 deletions src/MarkdownGenerator/FodyWeavers.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<Weavers>
<Costura />
</Weavers>
Binary file added src/MarkdownGenerator/Icon.ico
Binary file not shown.
Binary file added src/MarkdownGenerator/Img/Icon.ico
Binary file not shown.
Binary file added src/MarkdownGenerator/Img/Icon.psd
Binary file not shown.
20 changes: 20 additions & 0 deletions src/MarkdownGenerator/MarkdownGenerator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
Expand All @@ -53,7 +55,14 @@
<PropertyGroup>
<GenerateManifests>true</GenerateManifests>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="Costura, Version=1.6.2.0, Culture=neutral, PublicKeyToken=9919ef960d84173d, processorArchitecture=MSIL">
<HintPath>..\packages\Costura.Fody.1.6.2\lib\dotnet\Costura.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="HtmlAgilityPack, Version=1.4.9.5, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL">
<HintPath>packages\HtmlAgilityPack.1.4.9.5\lib\Net45\HtmlAgilityPack.dll</HintPath>
</Reference>
Expand Down Expand Up @@ -362,6 +371,8 @@
<SubType>Designer</SubType>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="FodyWeavers.xml" />
<Content Include="Icon.ico" />
<Content Include="Sample\Index.xml">
<SubType>Designer</SubType>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
Expand Down Expand Up @@ -400,6 +411,15 @@
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\Fody.2.0.0\build\dotnet\Fody.targets" Condition="Exists('..\packages\Fody.2.0.0\build\dotnet\Fody.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Fody.2.0.0\build\dotnet\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.2.0.0\build\dotnet\Fody.targets'))" />
<Error Condition="!Exists('..\packages\Costura.Fody.1.6.2\build\dotnet\Costura.Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Costura.Fody.1.6.2\build\dotnet\Costura.Fody.targets'))" />
</Target>
<Import Project="..\packages\Costura.Fody.1.6.2\build\dotnet\Costura.Fody.targets" Condition="Exists('..\packages\Costura.Fody.1.6.2\build\dotnet\Costura.Fody.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">
Expand Down
2 changes: 2 additions & 0 deletions src/MarkdownGenerator/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Costura.Fody" version="1.6.2" targetFramework="net452" developmentDependency="true" />
<package id="Fody" version="2.0.0" targetFramework="net452" developmentDependency="true" />
<package id="HtmlAgilityPack" version="1.4.9.5" targetFramework="net452" />
<package id="Microsoft.AspNet.Razor" version="3.0.0" targetFramework="net452" />
<package id="Newtonsoft.Json" version="10.0.1" targetFramework="net452" />
Expand Down
23 changes: 0 additions & 23 deletions src/MarkdownGerenator.Publish/.app/app.info.json

This file was deleted.

14 changes: 0 additions & 14 deletions src/MarkdownGerenator.Publish/App.config

This file was deleted.

68 changes: 0 additions & 68 deletions src/MarkdownGerenator.Publish/Classes/AppInfo.cs

This file was deleted.

171 changes: 0 additions & 171 deletions src/MarkdownGerenator.Publish/Classes/AssemblyInfoUpdater.cs

This file was deleted.

Loading

0 comments on commit 523b3d9

Please sign in to comment.