Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build Battify

on:
pull_request:
branches: [master]
push:
branches: [master]

permissions:
contents: read

concurrency:
group: battify-build-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
name: Build app project
runs-on: windows-latest

steps:
- name: Check out source
uses: actions/checkout@v4

- name: Set up MSBuild
uses: microsoft/setup-msbuild@v2

- name: Restore dependencies
run: msbuild Battify/Battify.csproj /restore

- name: Build app
run: msbuild Battify/Battify.csproj /m /p:Configuration=Release /p:Platform=AnyCPU /p:RestoreIgnoreFailedSources=true
5 changes: 4 additions & 1 deletion Battify/App.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
xmlns:local="clr-namespace:Battify"
StartupUri="MainWindow.xaml">
<Application.Resources>

<!-- Set the inherited default font for all WPF windows and controls. -->
<Style TargetType="{x:Type Window}">
<Setter Property="FontFamily" Value="Noto Sans KR" />
</Style>
</Application.Resources>
</Application>
18 changes: 9 additions & 9 deletions Battify/TrayControl.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Battify/TrayGuideWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
Content="확인했어요"
Style="{StaticResource DarkButtonStyle}"
HorizontalAlignment="Right"
Width="190"
Width="160"
Height="41"
Click="ConfirmButton_Click"
Margin="0,15,20,20"/>
Expand Down
Loading