Skip to content
This repository has been archived by the owner on Jun 25, 2020. It is now read-only.

Don't use ResourceManager #363

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
cdd46f7
Merge pull request #1 from Code52/master
biohazard999 Sep 4, 2019
af746d5
Merge branch 'master' of https://github.com/Code52/pretzel
biohazard999 Sep 5, 2019
6a99682
Merge branch 'master' of https://github.com/Code52/pretzel
biohazard999 Sep 13, 2019
4e9edfd
Merge branch 'master' of https://github.com/Code52/pretzel
biohazard999 Sep 16, 2019
083ac1f
Merge branch 'master' of https://github.com/Code52/pretzel
biohazard999 Sep 18, 2019
0eb174e
Merge branch 'master' of https://github.com/biohazard999/pretzel
biohazard999 Sep 18, 2019
f4171c0
Merge branch 'master' of https://github.com/Code52/pretzel
biohazard999 Sep 18, 2019
576ada4
Merge branch 'master' of https://github.com/Code52/pretzel
biohazard999 Sep 28, 2019
797c337
Merge branch 'master' of https://github.com/Code52/pretzel
biohazard999 Sep 29, 2019
3a9e22c
Merge branch 'master' of https://github.com/Code52/pretzel
biohazard999 Oct 9, 2019
3aa44f4
Merge branch 'master' of https://github.com/biohazard999/pretzel
biohazard999 Oct 9, 2019
a804cea
Merge branch 'master' of https://github.com/biohazard999/pretzel
biohazard999 Oct 24, 2019
26e99d9
Merge branch 'master' of https://github.com/biohazard999/pretzel
biohazard999 Oct 25, 2019
14a9162
Merge branch 'master' of https://github.com/biohazard999/pretzel
biohazard999 Dec 11, 2019
5e1533e
fix: don't use resource manager for files liquid engine
biohazard999 Dec 11, 2019
e5c1e13
fix: dont use resourcemanager at all
biohazard999 Dec 11, 2019
dcc8f94
refactor: use CreateFile for new posts
biohazard999 Dec 12, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using System.Linq;
using Pretzel.Logic.Commands;
using Pretzel.Logic.Extensions;
using Pretzel.Logic.Recipes;

namespace Pretzel.Logic.Extensibility.Extensions
{
Expand Down Expand Up @@ -67,9 +68,9 @@ public void MixIn(string directory)
fileSystem.Directory.Move(directoryToMove, Path.Combine(sourceFolder, trimStart));
}

fileSystem.File.WriteAllText(Path.Combine(directory, @"Shim.cs"), Properties.RazorAzure.Shim);
fileSystem.File.WriteAllText(Path.Combine(directory, @"Shim.csproj"), Properties.RazorAzure.ShimProject);
fileSystem.File.WriteAllText(Path.Combine(directory, @"Shim.sln"), Properties.RazorAzure.ShimSolution);
Recipe.CreateFile(GetType(), fileSystem, @"Resources\RazorAzure\Shim.cs", directory, @"Shim.cs");
Recipe.CreateFile(GetType(), fileSystem, @"Resources\RazorAzure\Shim.csproj", directory, @"Shim.csproj");
Recipe.CreateFile(GetType(), fileSystem, @"Resources\RazorAzure\Shim.sln", directory, @"Shim.sln");

var currentPath = assembly.GetEntryAssemblyLocation();
var destination = Path.Combine(directory, "Pretzel.exe");
Expand Down
54 changes: 0 additions & 54 deletions src/Pretzel.Logic/Pretzel.Logic.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -51,60 +51,6 @@
<EmbeddedResource Include="Resources\**\*.*">
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Liquid.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Liquid.resx</DependentUpon>
</Compile>
<Compile Update="Properties\Razor.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Razor.resx</DependentUpon>
</Compile>
<Compile Update="Properties\RazorAzure.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>RazorAzure.resx</DependentUpon>
</Compile>
<Compile Update="Properties\RazorCsProject.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>RazorCsProject.resx</DependentUpon>
</Compile>
<Compile Update="Properties\RazorWiki.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>RazorWiki.resx</DependentUpon>
</Compile>
<Compile Update="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Razor.resx">
<Generator>ResXFileCodeGenerator</Generator>
<SubType>Designer</SubType>
<LastGenOutput>Razor.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Properties\Liquid.resx">
<Generator>ResXFileCodeGenerator</Generator>
<SubType>Designer</SubType>
<LastGenOutput>Liquid.Designer.cs</LastGenOutput>
</EmbeddedResource>
<EmbeddedResource Update="Properties\RazorWiki.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>RazorWiki.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Compile Remove="VirtualDirectoryTransform.cs" />
<Compile Remove="Minification\AssetMinifier.cs" />
Expand Down
284 changes: 0 additions & 284 deletions src/Pretzel.Logic/Properties/Liquid.Designer.cs

This file was deleted.

Loading