Skip to content
This repository has been archived by the owner on Apr 12, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1 from Takym/refactoring/issue-160
Browse files Browse the repository at this point in the history
`Release` ビルド時にデバッグページを除外して容量を削減する
  • Loading branch information
i-maruyama authored May 25, 2021
2 parents 8fbbc10 + b8f90a3 commit 2185ec7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Covid19Radar/Covid19Radar/Covid19Radar.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="MultilingualAppToolkit">
<MultilingualAppToolkitVersion>4.0</MultilingualAppToolkitVersion>
Expand Down Expand Up @@ -199,4 +199,9 @@
<ItemGroup>
<ProjectReference Include="..\Xamarin.ExposureNotification\Xamarin.ExposureNotification.csproj" />
</ItemGroup>
</Project>
<ItemGroup Condition="'$(Configuration)'=='Release'">
<Compile Remove="ViewModels/HomePage/DebugPageViewModel.cs" />
<Compile Remove="Views/HomePage/DebugPage.xaml.cs" />
<EmbeddedResource Remove="Views/HomePage/DebugPage.xaml" />
</ItemGroup>
</Project>

0 comments on commit 2185ec7

Please sign in to comment.