Skip to content

Commit

Permalink
release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
miyaji255 committed Jun 11, 2023
1 parent fae886f commit 06b300c
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 8 deletions.
37 changes: 33 additions & 4 deletions EasyPlot/EasyPlot.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows10.0.19041.0</TargetFramework>
Expand All @@ -9,13 +9,18 @@
<Platforms>x86;x64;arm64</Platforms>
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
<PublishProfile>Properties\PublishProfiles\win10-$(Platform).pubxml</PublishProfile>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWinUI>true</UseWinUI>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWinUI>true</UseWinUI>
<GenerateAppInstallerFile>True</GenerateAppInstallerFile>
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
<AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled>
<GenerateTestArtifacts>True</GenerateTestArtifacts>
<EnableMsixTooling>true</EnableMsixTooling>
<DefaultLanguage>ja-JP</DefaultLanguage>
<PackageCertificateThumbprint>55C2EC7BEC9FC97A601C6229C333D4EF89E30819</PackageCertificateThumbprint>
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Content Remove="Assets\Icon\icon.pdf" />
Expand Down Expand Up @@ -130,4 +135,28 @@
<PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
<HasPackageAndPublishMenu>true</HasPackageAndPublishMenu>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<DebugType>portable</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DebugType>portable</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|arm64'">
<DebugType>portable</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<DebugType>portable</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>portable</DebugType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|arm64'">
<DebugType>portable</DebugType>
</PropertyGroup>
</Project>
16 changes: 12 additions & 4 deletions EasyPlot/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
{
{
"profiles": {
"EasyPlot (Package)": {
"commandName": "MsixPackage"
},
"EasyPlot (Package)": {
"commandName": "MsixPackage",
"commandLineArgs": "", /* Command line arguments to pass to the app. */
"alwaysReinstallApp": false, /* Uninstall and then reinstall the app. All information about the app state is deleted. */
"remoteDebugEnabled": false, /* Indicates that the debugger should attach to a process on a remote machine. */
"allowLocalNetworkLoopbackProperty": true, /* Allow the app to make network calls to the device it is installed on. */
"authenticationMode": "Windows", /* The authentication scheme to use when connecting to the remote machine. */
"doNotLaunchApp": false, /* Do not launch the app, but debug my code when it starts. */
"remoteDebugMachine": "", /* The name of the remote machine. */
"nativeDebugging": false /* Enable debugging for managed and native code together, also known as mixed-mode debugging. */
},
"EasyPlot (Unpackaged)": {
"commandName": "Project"
}
Expand Down

0 comments on commit 06b300c

Please sign in to comment.