Skip to content

Commit 06b300c

Browse files
committed
release v0.3.0
1 parent fae886f commit 06b300c

File tree

2 files changed

+45
-8
lines changed

2 files changed

+45
-8
lines changed

EasyPlot/EasyPlot.csproj

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>WinExe</OutputType>
44
<TargetFramework>net7.0-windows10.0.19041.0</TargetFramework>
@@ -9,13 +9,18 @@
99
<Platforms>x86;x64;arm64</Platforms>
1010
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
1111
<PublishProfile>Properties\PublishProfiles\win10-$(Platform).pubxml</PublishProfile>
12-
<ImplicitUsings>enable</ImplicitUsings>
13-
<Nullable>enable</Nullable>
14-
<UseWinUI>true</UseWinUI>
12+
<ImplicitUsings>enable</ImplicitUsings>
13+
<Nullable>enable</Nullable>
14+
<UseWinUI>true</UseWinUI>
15+
<GenerateAppInstallerFile>True</GenerateAppInstallerFile>
16+
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
17+
<AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled>
18+
<GenerateTestArtifacts>True</GenerateTestArtifacts>
1519
<EnableMsixTooling>true</EnableMsixTooling>
1620
<DefaultLanguage>ja-JP</DefaultLanguage>
1721
<PackageCertificateThumbprint>55C2EC7BEC9FC97A601C6229C333D4EF89E30819</PackageCertificateThumbprint>
1822
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
23+
<PlatformTarget>x64</PlatformTarget>
1924
</PropertyGroup>
2025
<ItemGroup>
2126
<Content Remove="Assets\Icon\icon.pdf" />
@@ -130,4 +135,28 @@
130135
<PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
131136
<HasPackageAndPublishMenu>true</HasPackageAndPublishMenu>
132137
</PropertyGroup>
138+
139+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
140+
<DebugType>portable</DebugType>
141+
</PropertyGroup>
142+
143+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
144+
<DebugType>portable</DebugType>
145+
</PropertyGroup>
146+
147+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|arm64'">
148+
<DebugType>portable</DebugType>
149+
</PropertyGroup>
150+
151+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
152+
<DebugType>portable</DebugType>
153+
</PropertyGroup>
154+
155+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
156+
<DebugType>portable</DebugType>
157+
</PropertyGroup>
158+
159+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|arm64'">
160+
<DebugType>portable</DebugType>
161+
</PropertyGroup>
133162
</Project>

EasyPlot/Properties/launchSettings.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
1-
{
1+
{
22
"profiles": {
3-
"EasyPlot (Package)": {
4-
"commandName": "MsixPackage"
5-
},
3+
"EasyPlot (Package)": {
4+
"commandName": "MsixPackage",
5+
"commandLineArgs": "", /* Command line arguments to pass to the app. */
6+
"alwaysReinstallApp": false, /* Uninstall and then reinstall the app. All information about the app state is deleted. */
7+
"remoteDebugEnabled": false, /* Indicates that the debugger should attach to a process on a remote machine. */
8+
"allowLocalNetworkLoopbackProperty": true, /* Allow the app to make network calls to the device it is installed on. */
9+
"authenticationMode": "Windows", /* The authentication scheme to use when connecting to the remote machine. */
10+
"doNotLaunchApp": false, /* Do not launch the app, but debug my code when it starts. */
11+
"remoteDebugMachine": "", /* The name of the remote machine. */
12+
"nativeDebugging": false /* Enable debugging for managed and native code together, also known as mixed-mode debugging. */
13+
},
614
"EasyPlot (Unpackaged)": {
715
"commandName": "Project"
816
}

0 commit comments

Comments
 (0)