add resources to plc

This commit is contained in:
stubbfel
2013-08-26 16:50:39 +02:00
parent fe18f94059
commit 8aca18b37d
4 changed files with 12 additions and 62 deletions

View File

@@ -33,8 +33,6 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Compile Include="Const.cs" />
<Compile Include="LocalizedStrings.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Resources\AppResources.Designer.cs">
<DependentUpon>AppResources.resx</DependentUpon>

View File

@@ -1,33 +0,0 @@
//-----------------------------------------------------------------------
// <copyright file="Const.cs" company="BTU/IIT">
// Company copyright tag.
// </copyright>
// <author>stubbfel</author>
// <sience>08.07.2013</sience>
//----------------------------------------------------------------------
namespace CampusAppWP8
{
using CampusAppWPortalLib8.Resources;
/// <summary>
/// Access to Constants.rex
/// </summary>
public class Const
{
/// <summary>
/// Resource object.
/// </summary>
private static Constants constantResources = new Constants();
/// <summary>
/// Gets the resource object.
/// </summary>
public Constants Constants
{
get
{
return constantResources;
}
}
}
}

View File

@@ -1,27 +0,0 @@
//-----------------------------------------------------------------------------
// <copyright file="LocalizedStrings.cs" company="BTU/IIT">
// Company copyright tag.
// </copyright>
// <sience>16.07.2013</sience>
//-----------------------------------------------------------------------------
namespace CampusAppWP8
{
using CampusAppWPortalLib8.Resources;
/// <summary>Localized strings. </summary>
public class LocalizedStrings
{
/// <summary>The localized resources. </summary>
private static AppResources localizedResources = new AppResources();
/// <summary>Gets the localized resources. </summary>
/// <value>The localized resources. </value>
public AppResources LocalizedResources
{
get
{
return localizedResources;
}
}
}
}

View File

@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CampusAppWPortalLib8.NewFolder1
{
public class Class1
{
}
}