Skip to content

Commit 301d5c4

Browse files
Psuedoizer powershell commandlet.
1 parent 15c0820 commit 301d5c4

File tree

5 files changed

+2
-59
lines changed

5 files changed

+2
-59
lines changed

src/Code52.i18n.MVC/Code52.i18n.MVC.csproj

-3
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,11 @@
5858
<ItemGroup>
5959
<None Include="NuSpec\Content\App_Readme\Code52.i18n.MVC.readme.txt.pp" />
6060
<Content Include="NuSpec\Content\Content\code52.i18n\Code52.i18n.css" />
61-
<Content Include="NuSpec\Content\Content\code52.i18n\images\bg_regions_international_tile.png" />
6261
<Content Include="NuSpec\Content\Content\code52.i18n\images\flags\de.png" />
6362
<Content Include="NuSpec\Content\Content\code52.i18n\images\flags\es.png" />
6463
<Content Include="NuSpec\Content\Content\code52.i18n\images\flags\fr.png" />
6564
<Content Include="NuSpec\Content\Content\code52.i18n\images\flags\gb.png" />
6665
<Content Include="NuSpec\Content\Content\code52.i18n\images\flags\it.png" />
67-
<Content Include="NuSpec\Content\Content\code52.i18n\images\icon_international_map.png" />
68-
<Content Include="NuSpec\Content\Content\code52.i18n\images\WorldHeader.png" />
6966
<Content Include="NuSpec\Content\Scripts\Code52.i18n.js" />
7067
</ItemGroup>
7168
<ItemGroup>

src/Code52.i18n.Tools/Code52.i18n.Tools.csproj

-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
<Compile Include="Psuedoizer.cs" />
5151
<Compile Include="Properties\AssemblyInfo.cs" />
5252
<Compile Include="PsuedoizerCmdlet.cs" />
53-
<Compile Include="PsuedoizerTask.cs" />
5453
</ItemGroup>
5554
<ItemGroup>
5655
<None Include="NuSpec\Code52.i18n.Tools.nuspec">

src/Code52.i18n.Tools/NuSpec/Code52.i18n.Tools.nuspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
<projectUrl>http://code52.org/aspnet-internationalization</projectUrl>
88
<iconUrl>http://code52.org/aspnet-internationalization/icon.png</iconUrl>
99
<id>Code52.i18n.Tools</id>
10-
<title>ASP.NET Internationalisation (i18n) MSBuild Tasks</title>
10+
<title>ASP.NET Internationalisation (i18n) Tools</title>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>Part of a package to making i18n easy for ASP.NET devs</description>
13-
<summary />
13+
<summary>Installs a MSBuild task and a powershell commandlet to support the localisation of resource files</summary>
1414
<dependencies>
1515
<dependency id="NuGetPowerTools" version="0.26" />
1616
</dependencies>

src/Code52.i18n.Tools/NuSpec/tools/init.ps1

-20
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,6 @@
11
#First some common params, delivered by the nuget package installer
22
param($installPath, $toolsPath, $package, $project)
33

4-
# Grab a reference to the buildproject using a function from NuGetPowerTools
5-
$buildProject = Get-MSBuildProject
6-
7-
# Add a target to your build project
8-
$target = $buildProject.Xml.AddTarget("Psuedoizer")
9-
10-
# Make this target run before build
11-
# You don't need to call your target from the beforebuild target,
12-
# just state it using the BeforeTargets attribute
13-
$target.BeforeTargets = "BeforeBuild"
14-
15-
# Add your task to the newly created target
16-
$target.AddTask("PsuedoizerTask")
17-
18-
# Save the buildproject
19-
$buildProject.Save()
20-
21-
# Save the project from the params
22-
$project.Save()
23-
244
Import-Module (Join-Path $toolsPath Code52.i18n.Tools.dll)
255

266
Write-Host "#############################"

src/Code52.i18n.Tools/PsuedoizerTask.cs

-33
This file was deleted.

0 commit comments

Comments
 (0)