Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 4c1e5fd

Browse files
authored
Merge pull request #4 from microsoft/dev/edskrod/master/AddPublisherProfiles
Add Publisher Profiles to the Wpf project.
2 parents 3647a39 + a3baddd commit 4c1e5fd

File tree

5 files changed

+75
-1
lines changed

5 files changed

+75
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,11 @@ publish/
174174
*.azurePubxml
175175
# Note: Comment the next line if you want to checkin your web deploy settings,
176176
# but database connection strings (with potential passwords) will be unencrypted
177-
*.pubxml
178177
*.publishproj
179178

179+
# Uncomment the next line if you don't want to checkin Publisher Profiles.
180+
# *.pubxml
181+
180182
# Microsoft Azure Web App publish settings. Comment the next line if you want to
181183
# checkin your Azure Web App publish settings, but sensitive information contained
182184
# in these scripts will be unencrypted
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 ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6+
<PropertyGroup>
7+
<PublishProtocol>FileSystem</PublishProtocol>
8+
<Configuration>Release</Configuration>
9+
<Platform>x64</Platform>
10+
<TargetFramework>netcoreapp3.1</TargetFramework>
11+
<PublishDir>bin\Release\netcoreapp3.1\publish\</PublishDir>
12+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
13+
<SelfContained>true</SelfContained>
14+
<PublishSingleFile>False</PublishSingleFile>
15+
<PublishReadyToRun>False</PublishReadyToRun>
16+
<PublishTrimmed>False</PublishTrimmed>
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 ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6+
<PropertyGroup>
7+
<PublishProtocol>FileSystem</PublishProtocol>
8+
<Configuration>Debug</Configuration>
9+
<Platform>x64</Platform>
10+
<TargetFramework>netcoreapp3.1</TargetFramework>
11+
<PublishDir>bin\Debug\netcoreapp3.1\publish\</PublishDir>
12+
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
13+
<SelfContained>true</SelfContained>
14+
<PublishSingleFile>False</PublishSingleFile>
15+
<PublishReadyToRun>False</PublishReadyToRun>
16+
<PublishTrimmed>False</PublishTrimmed>
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 ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6+
<PropertyGroup>
7+
<PublishProtocol>FileSystem</PublishProtocol>
8+
<Configuration>Release</Configuration>
9+
<Platform>x86</Platform>
10+
<TargetFramework>netcoreapp3.1</TargetFramework>
11+
<PublishDir>bin\Release\netcoreapp3.1\publish\</PublishDir>
12+
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
13+
<SelfContained>true</SelfContained>
14+
<PublishSingleFile>False</PublishSingleFile>
15+
<PublishReadyToRun>False</PublishReadyToRun>
16+
<PublishTrimmed>False</PublishTrimmed>
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 ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
6+
<PropertyGroup>
7+
<PublishProtocol>FileSystem</PublishProtocol>
8+
<Configuration>Debug</Configuration>
9+
<Platform>x86</Platform>
10+
<TargetFramework>netcoreapp3.1</TargetFramework>
11+
<PublishDir>bin\Debug\netcoreapp3.1\publish\</PublishDir>
12+
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
13+
<SelfContained>true</SelfContained>
14+
<PublishSingleFile>False</PublishSingleFile>
15+
<PublishReadyToRun>False</PublishReadyToRun>
16+
<PublishTrimmed>False</PublishTrimmed>
17+
</PropertyGroup>
18+
</Project>

0 commit comments

Comments
 (0)