ClickOnce: Adding app icon, fixing publisher name and publish directly to FTP.
authorsl
Sun, 11 Jan 2015 18:34:52 +0100
changeset 859c4a78195ac4
parent 84 38e39df95b0a
child 86 829dd13b1048
ClickOnce: Adding app icon, fixing publisher name and publish directly to FTP.
Server/Properties/AssemblyInfo.cs
Server/SharpDisplayManager.csproj
     1.1 --- a/Server/Properties/AssemblyInfo.cs	Sun Jan 11 15:44:12 2015 +0100
     1.2 +++ b/Server/Properties/AssemblyInfo.cs	Sun Jan 11 18:34:52 2015 +0100
     1.3 @@ -1,15 +1,16 @@
     1.4  using System.Reflection;
     1.5  using System.Runtime.CompilerServices;
     1.6  using System.Runtime.InteropServices;
     1.7 +using System.Resources;
     1.8  
     1.9  // General Information about an assembly is controlled through the following 
    1.10  // set of attributes. Change these attribute values to modify the information
    1.11  // associated with an assembly.
    1.12 -[assembly: AssemblyTitle("SharpDisplayManager")]
    1.13 -[assembly: AssemblyDescription("")]
    1.14 +[assembly: AssemblyTitle("Sharp Display Manager")]
    1.15 +[assembly: AssemblyDescription("Manage Internal Display")]
    1.16  [assembly: AssemblyConfiguration("")]
    1.17 -[assembly: AssemblyCompany("")]
    1.18 -[assembly: AssemblyProduct("SharpDisplayManager")]
    1.19 +[assembly: AssemblyCompany("Slions")]
    1.20 +[assembly: AssemblyProduct("Sharp Display Manager")]
    1.21  [assembly: AssemblyCopyright("Copyright ©  2014")]
    1.22  [assembly: AssemblyTrademark("")]
    1.23  [assembly: AssemblyCulture("")]
    1.24 @@ -34,3 +35,4 @@
    1.25  // [assembly: AssemblyVersion("1.0.*")]
    1.26  [assembly: AssemblyVersion("1.0.0.0")]
    1.27  [assembly: AssemblyFileVersion("1.0.0.0")]
    1.28 +[assembly: NeutralResourcesLanguageAttribute("en")]
     2.1 --- a/Server/SharpDisplayManager.csproj	Sun Jan 11 15:44:12 2015 +0100
     2.2 +++ b/Server/SharpDisplayManager.csproj	Sun Jan 11 18:34:52 2015 +0100
     2.3 @@ -13,7 +13,7 @@
     2.4      <FileAlignment>512</FileAlignment>
     2.5      <TargetFrameworkProfile />
     2.6      <IsWebBootstrapper>true</IsWebBootstrapper>
     2.7 -    <PublishUrl>publish/</PublishUrl>
     2.8 +    <PublishUrl>ftp://lenclud%40monroe.dreamhost.com/publish.slions.net/SharpDisplayManager/</PublishUrl>
     2.9      <Install>true</Install>
    2.10      <InstallFrom>Web</InstallFrom>
    2.11      <UpdateEnabled>true</UpdateEnabled>
    2.12 @@ -24,11 +24,16 @@
    2.13      <UpdateRequired>false</UpdateRequired>
    2.14      <MapFileExtensions>true</MapFileExtensions>
    2.15      <InstallUrl>http://publish.slions.net/SharpDisplayManager/</InstallUrl>
    2.16 +    <SupportUrl>http://publish.slions.net/SharpDisplayManager/</SupportUrl>
    2.17 +    <ProductName>Sharp Display Manager</ProductName>
    2.18 +    <PublisherName>Slions</PublisherName>
    2.19      <CreateWebPageOnPublish>true</CreateWebPageOnPublish>
    2.20 -    <WebPage>publish.htm</WebPage>
    2.21 -    <ApplicationRevision>7</ApplicationRevision>
    2.22 +    <WebPage>index.htm</WebPage>
    2.23 +    <OpenBrowserOnPublish>false</OpenBrowserOnPublish>
    2.24 +    <ApplicationRevision>11</ApplicationRevision>
    2.25      <ApplicationVersion>0.1.0.%2a</ApplicationVersion>
    2.26      <UseApplicationTrust>false</UseApplicationTrust>
    2.27 +    <CreateDesktopShortcut>true</CreateDesktopShortcut>
    2.28      <PublishWizardCompleted>true</PublishWizardCompleted>
    2.29      <BootstrapperEnabled>true</BootstrapperEnabled>
    2.30    </PropertyGroup>
    2.31 @@ -85,6 +90,12 @@
    2.32    <PropertyGroup>
    2.33      <GenerateManifests>true</GenerateManifests>
    2.34    </PropertyGroup>
    2.35 +  <PropertyGroup>
    2.36 +    <ApplicationIcon>vfd.ico</ApplicationIcon>
    2.37 +  </PropertyGroup>
    2.38 +  <PropertyGroup>
    2.39 +    <StartupObject>SharpDisplayManager.Program</StartupObject>
    2.40 +  </PropertyGroup>
    2.41    <ItemGroup>
    2.42      <Reference Include="Microsoft.VisualBasic" />
    2.43      <Reference Include="Microsoft.VisualBasic.PowerPacks.Vs, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
    2.44 @@ -183,6 +194,7 @@
    2.45    </ItemGroup>
    2.46    <ItemGroup>
    2.47      <Content Include="MiniDisplay.dll" />
    2.48 +    <Content Include="vfd.ico" />
    2.49    </ItemGroup>
    2.50    <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    2.51    <!-- To modify your build process, add your task inside one of the targets below and uncomment it.