New releases file. Updated filtering logic for attributes to prevent duplicate events.
This commit is contained in:
BIN
BodyshopUploader/Assets/favicon.ico
Normal file
BIN
BodyshopUploader/Assets/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 766 B |
@@ -80,6 +80,9 @@
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup />
|
||||
<PropertyGroup>
|
||||
<StartupObject>BodyshopPartner.App</StartupObject>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="DeltaCompressionDotNet, Version=1.1.0.0, Culture=neutral, PublicKeyToken=1d14d6e5194e7f4a, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\DeltaCompressionDotNet.1.1.0\lib\net20\DeltaCompressionDotNet.dll</HintPath>
|
||||
@@ -454,8 +457,9 @@
|
||||
<Generator>PublicResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
<Resource Include="favicon.ico" />
|
||||
<Resource Include="Assets\logo1024.png" />
|
||||
<Resource Include="Assets\favicon.ico" />
|
||||
<Resource Include="favicon.ico" />
|
||||
<Content Include="NLog.config">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<authors>Snapt Software Inc.</authors>
|
||||
<owners></owners>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<iconUrl>http://www.thinkimex.com/vps.ico</iconUrl>
|
||||
<iconUrl>https://s3.ca-central-1.amazonaws.com/partner.imex.online/favicon.ico</iconUrl>
|
||||
<copyright>Snapt Software Inc. 2020</copyright>
|
||||
<description>ImEX Online Partner</description>
|
||||
</metadata>
|
||||
|
||||
1
BodyshopUploader/Releases/RELEASES
Normal file
1
BodyshopUploader/Releases/RELEASES
Normal file
@@ -0,0 +1 @@
|
||||
470D3E4BA415108C1FAF95734B251733E3AF8579 ImEXOnlinePartner-1.0.0-full.nupkg 4989578
|
||||
@@ -35,10 +35,10 @@ namespace BodyshopPartner.Utils
|
||||
IncludeSubdirectories = false;
|
||||
// Eliminate duplicates when timestamp doesn't change
|
||||
Filter = "*.env";
|
||||
NotifyFilter = NotifyFilters.FileName | NotifyFilters.LastWrite;
|
||||
//NotifyFilter = NotifyFilters.FileName | NotifyFilters.Size; // The default also has NotifyFilters.LastWrite
|
||||
// NotifyFilter = NotifyFilters.FileName | NotifyFilters.LastWrite;
|
||||
NotifyFilter = NotifyFilters.Attributes; // The default also has NotifyFilters.LastWrite
|
||||
EnableRaisingEvents = true;
|
||||
Created += Watcher_Created;
|
||||
//Created += Watcher_Created;
|
||||
Changed += Watcher_Changed;
|
||||
//Deleted += Watcher_Deleted;
|
||||
//Renamed += Watcher_Renamed;
|
||||
|
||||
@@ -25,7 +25,7 @@ namespace BodyshopPartner.Utils
|
||||
try
|
||||
{
|
||||
Process.Start(psi).WaitForExit();
|
||||
logger.Debug("Attempting to add HTTP Exclusion for web-server");
|
||||
logger.Debug("Added web-server port exclusion.");
|
||||
return true;
|
||||
}
|
||||
catch (Exception Ex)
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>ImEXOnlinePartner</id>
|
||||
<version>1.0.0</version>
|
||||
<title>ImEX Online Partner</title>
|
||||
<authors>Snapt Software Inc.</authors>
|
||||
<owners></owners>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<iconUrl>http://www.thinkimex.com/vps.ico</iconUrl>
|
||||
<copyright>Snapt Software Inc. 2020</copyright>
|
||||
<description>ImEX Online Partner</description>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="*.*" target="lib\net45\" exclude="*.pdb;*.nupkg;*.vshost.*"/>
|
||||
<file src="**\*.*" target="lib\net45\" exclude="*.pdb;*.nupkg;*.vshost.*"/>
|
||||
</files>
|
||||
</package>
|
||||
Reference in New Issue
Block a user