This commit is contained in:
Jared Goodwin 2019-06-19 20:35:36 -07:00
parent f6627140d4
commit bd2c8c5452
5 changed files with 21 additions and 8 deletions

3
.gitignore vendored
View File

@ -266,4 +266,5 @@ __pycache__/
/Server/Server.db
/Server/Recordings/*
/Server/ffmpeg.exe
/Server/Properties/PublishProfiles
/Server/Properties/PublishProfiles
*.msi

View File

@ -2482,7 +2482,7 @@
{
"Name" = "8:.NET Framework"
"Message" = "8:[VSDNETMSG]"
"FrameworkVersion" = "8:.NETFramework,Version=v4.6.1"
"FrameworkVersion" = "8:.NETFramework,Version=v4.7.2"
"AllowLaterVersions" = "11:FALSE"
"InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=671728"
}
@ -7148,7 +7148,7 @@
}
"{3C67513D-01DD-4637-8A68-80971EB9504F}:_CF8239574F86487C9D3AFD7CEECA3BB5"
{
"DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]"
"DefaultLocation" = "8:[ProgramFiles64Folder][Manufacturer]\\[ProductName]"
"Name" = "8:#1925"
"AlwaysCreate" = "11:FALSE"
"Condition" = "8:"
@ -7186,7 +7186,7 @@
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:Remotely Desktop"
"ProductCode" = "8:{9ED3CF93-A3C5-4E86-8071-A8CEEC860767}"
"PackageCode" = "8:{0742D5DA-72E4-49D9-975E-4C071BBED7AC}"
"PackageCode" = "8:{1152E147-B2C4-44AA-B6B7-4D345A5D9E71}"
"UpgradeCode" = "8:{B974F227-4132-4FF3-AD07-D359623501C3}"
"AspNetVersion" = "8:4.0.30319.0"
"RestartWWWService" = "11:FALSE"
@ -7207,7 +7207,7 @@
"ARPIconIndex" = "3:0"
"SearchPath" = "8:"
"UseSystemSearchPath" = "11:TRUE"
"TargetPlatform" = "3:0"
"TargetPlatform" = "3:1"
"PreBuildEvent" = "8:"
"PostBuildEvent" = "8:"
"RunPostBuildEvent" = "3:0"

View File

@ -27,9 +27,16 @@
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<MapFileExtensions>false</MapFileExtensions>
<SupportUrl>https://lucency.co/Contact</SupportUrl>
<ErrorReportUrl>https://lucency.co/Contact</ErrorReportUrl>
<ProductName>Remotely Desktop</ProductName>
<PublisherName>Translucency Software</PublisherName>
<SuiteName>Remotely</SuiteName>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.0</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<CreateDesktopShortcut>true</CreateDesktopShortcut>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
@ -69,6 +76,9 @@
<Optimize>true</Optimize>
<OutputPath>bin\x64\Release\</OutputPath>
</PropertyGroup>
<PropertyGroup>
<GenerateManifests>true</GenerateManifests>
</PropertyGroup>
<ItemGroup>
<Reference Include="MessagePack, Version=1.7.3.7, Culture=neutral, PublicKeyToken=b4a0369545f0a1be, processorArchitecture=MSIL">
<HintPath>..\packages\MessagePack.1.7.3.7\lib\net47\MessagePack.dll</HintPath>

View File

@ -53,3 +53,5 @@ using System.Windows;
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: Guid("0f554d14-3bec-473a-80fc-3a52ff97065e")]

View File

@ -117,7 +117,7 @@ while ((Test-Path -Path "$PublishDir\Remotely-Linux.zip") -eq $false){
Move-Item -Path "$PublishDir\Remotely-Linux.zip" -Destination "$Root\Server\wwwroot\Downloads\Remotely-Linux.zip" -Force
# Copy desktop app to Downloads folder.
&"$DevEnv" "$Root\Desktop.Win.Installer\Desktop.Win.Installer.vdproj" /build "Release|x86"
&"$DevEnv" "$Root\Desktop.Win.Installer\Desktop.Win.Installer.vdproj" /build "Release|x64"
Copy-Item -Path ".\Desktop.Win.Installer\Release\Remotely_Desktop_Installer.msi" -Destination ".\Server\wwwroot\Downloads\Remotely_Desktop_Installer.msi" -Force