Skip to content

Commit

Permalink
Renamed project, ready for github
Browse files Browse the repository at this point in the history
  • Loading branch information
dnetguru committed Jan 15, 2015
1 parent 05ca9e3 commit 0c765b8
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion JSUNFucker.sln → JSUNFuck.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2013
VisualStudioVersion = 12.0.31101.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JSUNFucker", "JSUNFucker\JSUNFucker.csproj", "{E9BDBDFF-DD16-42AB-AAD1-E431BF4E3125}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JSUNFuck", "JSUNFucker\JSUNFuck.csproj", "{E9BDBDFF-DD16-42AB-AAD1-E431BF4E3125}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Binary file added JSUNFucker/Adobe_Dreamweaver_JS.ico
Binary file not shown.
Binary file added JSUNFucker/JS.ico
Binary file not shown.
11 changes: 9 additions & 2 deletions JSUNFucker/JSUNFucker.csproj → JSUNFucker/JSUNFuck.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<ProjectGuid>{E9BDBDFF-DD16-42AB-AAD1-E431BF4E3125}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>JSUNFucker</RootNamespace>
<AssemblyName>JSUNFucker</AssemblyName>
<RootNamespace>JSUNFuck</RootNamespace>
<AssemblyName>JSUNFuck</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
Expand All @@ -31,6 +31,9 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>JS.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand All @@ -49,6 +52,10 @@
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="Adobe_Dreamweaver_JS.ico" />
<Content Include="JS.ico" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.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.
Expand Down
4 changes: 2 additions & 2 deletions JSUNFucker/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
using System.Text.RegularExpressions;
using System.Threading.Tasks;

namespace JSUNFucker
namespace JSUNFuck
{
internal class Program
{
readonly static Regex r = new Regex("([^\\+])\\+(?!\\+)", RegexOptions.Multiline | RegexOptions.Compiled);
private static void Main(string[] args)
{
if (args.Length != 2) Exit("Usage: JSUNFucker.exe <JSFuck Encrypted File> <Output Filename>");
if (args.Length != 2) Exit("Usage: JSUNFuck.exe <JSFuck Encrypted File> <Output Filename>");
else if (!File.Exists(args[0])) Exit("Cannot locate the specified source file ! :(");
try
{
Expand Down
2 changes: 1 addition & 1 deletion JSUNFucker/StrLenComparer.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections.Generic;

namespace JSUNFucker
namespace JSUNFuck
{
public class StrLenComparer : IComparer<string>
{
Expand Down

0 comments on commit 0c765b8

Please sign in to comment.