Skip to content

Commit 639c652

Browse files
committed
added publish profiles
1 parent debc2a9 commit 639c652

File tree

6 files changed

+49
-33
lines changed

6 files changed

+49
-33
lines changed

.gitignore

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -169,18 +169,6 @@ DocProject/Help/html
169169
# Click-Once directory
170170
publish/
171171

172-
# Publish Web Output
173-
*.[Pp]ublish.xml
174-
*.azurePubxml
175-
# Note: Comment the next line if you want to checkin your web deploy settings,
176-
# but database connection strings (with potential passwords) will be unencrypted
177-
*.pubxml
178-
*.publishproj
179-
180-
# Microsoft Azure Web App publish settings. Comment the next line if you want to
181-
# checkin your Azure Web App publish settings, but sensitive information contained
182-
# in these scripts will be unencrypted
183-
PublishScripts/
184172

185173
# NuGet Packages
186174
*.nupkg
@@ -227,7 +215,6 @@ ClientBin/
227215
*.dbproj.schemaview
228216
*.jfm
229217
*.pfx
230-
*.publishsettings
231218
orleans.codegen.cs
232219

233220
# Including strong name files can present a security risk

Source/.gitignore

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,6 @@ DocProject/Help/html
181181
# Click-Once directory
182182
publish/
183183

184-
# Publish Web Output
185-
*.[Pp]ublish.xml
186-
*.azurePubxml
187-
# Note: Comment the next line if you want to checkin your web deploy settings,
188-
# but database connection strings (with potential passwords) will be unencrypted
189-
*.pubxml
190-
*.publishproj
191184

192185
# Microsoft Azure Web App publish settings. Comment the next line if you want to
193186
# checkin your Azure Web App publish settings, but sensitive information contained
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
https://go.microsoft.com/fwlink/?LinkID=208121.
4+
-->
5+
<Project>
6+
<PropertyGroup>
7+
<Configuration>Release</Configuration>
8+
<Platform>x64</Platform>
9+
<PublishDir>bin\Publish\net8.0-windows10.0.17763.0\ExifGlass\</PublishDir>
10+
<PublishProtocol>FileSystem</PublishProtocol>
11+
<_TargetId>Folder</_TargetId>
12+
<TargetFramework>net8.0-windows10.0.17763.0</TargetFramework>
13+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
14+
<SelfContained>true</SelfContained>
15+
<PublishSingleFile>true</PublishSingleFile>
16+
<PublishReadyToRun>true</PublishReadyToRun>
17+
</PropertyGroup>
18+
</Project>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
https://go.microsoft.com/fwlink/?LinkID=208121.
4+
-->
5+
<Project>
6+
<PropertyGroup>
7+
<Configuration>Release</Configuration>
8+
<Platform>x64</Platform>
9+
<PublishDir>bin\Publish\net8.0-windows10.0.17763.0\Portable\</PublishDir>
10+
<PublishProtocol>FileSystem</PublishProtocol>
11+
<_TargetId>Folder</_TargetId>
12+
<TargetFramework>net8.0-windows10.0.17763.0</TargetFramework>
13+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
14+
<SelfContained>false</SelfContained>
15+
<PublishSingleFile>true</PublishSingleFile>
16+
<PublishReadyToRun>true</PublishReadyToRun>
17+
</PropertyGroup>
18+
</Project>

Source/MSIX/MSIX.wapproj

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -61,41 +61,41 @@
6161
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
6262
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
6363
<GenerateTestArtifacts>True</GenerateTestArtifacts>
64-
<AppxBundlePlatforms>x64|arm64</AppxBundlePlatforms>
64+
<AppxBundlePlatforms>x64</AppxBundlePlatforms>
6565
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
6666
<AppxPackageSigningTimestampServerUrl>http://timestamp.sectigo.com</AppxPackageSigningTimestampServerUrl>
6767
<GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate>
6868
<EntryPointProjectUniqueName>..\ExifGlass\ExifGlass.csproj</EntryPointProjectUniqueName>
6969
</PropertyGroup>
7070
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
71-
<AppxBundle>Never</AppxBundle>
71+
<AppxBundle>Auto</AppxBundle>
7272
</PropertyGroup>
7373
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'">
74-
<AppxBundle>Never</AppxBundle>
74+
<AppxBundle>Auto</AppxBundle>
7575
</PropertyGroup>
7676
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
77-
<AppxBundle>Never</AppxBundle>
77+
<AppxBundle>Auto</AppxBundle>
7878
</PropertyGroup>
7979
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
80-
<AppxBundle>Never</AppxBundle>
80+
<AppxBundle>Auto</AppxBundle>
8181
</PropertyGroup>
8282
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
83-
<AppxBundle>Never</AppxBundle>
83+
<AppxBundle>Auto</AppxBundle>
8484
</PropertyGroup>
8585
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
86-
<AppxBundle>Never</AppxBundle>
86+
<AppxBundle>Auto</AppxBundle>
8787
</PropertyGroup>
8888
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'">
89-
<AppxBundle>Never</AppxBundle>
89+
<AppxBundle>Auto</AppxBundle>
9090
</PropertyGroup>
9191
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
92-
<AppxBundle>Never</AppxBundle>
92+
<AppxBundle>Auto</AppxBundle>
9393
</PropertyGroup>
9494
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
95-
<AppxBundle>Never</AppxBundle>
95+
<AppxBundle>Auto</AppxBundle>
9696
</PropertyGroup>
9797
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
98-
<AppxBundle>Never</AppxBundle>
98+
<AppxBundle>Auto</AppxBundle>
9999
</PropertyGroup>
100100
<ItemGroup>
101101
<AppxManifest Include="Package.appxmanifest">

Source/MSIX/Package.appxmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
<Identity
1212
Name="9662DuongDieuPhap.ExifGlass"
1313
Publisher="CN=29F1B9EC-D220-4DC3-BEDB-01A9CCA51904"
14-
Version="1.4.0.0" />
14+
Version="1.5.0.0" />
1515

1616
<Properties>
1717
<DisplayName>ExifGlass</DisplayName>
1818
<PublisherDisplayName>Duong Dieu Phap</PublisherDisplayName>
1919
<Logo>Images\StoreLogo.png</Logo>
20-
<Description>EXIF metadata viewer - a wrapper of ExifTool</Description>
20+
<Description>ExifGlass - EXIF metadata viewing tool</Description>
2121
</Properties>
2222

2323
<Dependencies>

0 commit comments

Comments
 (0)