Skip to content

Commit

Permalink
Fixed appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
EX3exp committed Sep 26, 2024
1 parent 5978fb2 commit f1e9faa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
3 changes: 0 additions & 3 deletions Mirivoice/Views/PhonemeEditView.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,8 @@

<Border BorderBrush="DarkSlateGray" BorderThickness="1" Background="Gray">
<ScrollViewer AllowAutoHide="False" VerticalScrollBarVisibility="Disabled" HorizontalScrollBarVisibility="Auto">
<!-- ItemsControl for custom layout -->
<ItemsControl ItemsSource="{Binding MResultsCollection}">
<ItemsControl.ItemsPanel>
<!-- Use a horizontal StackPanel to arrange items side by side -->
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
Expand All @@ -22,7 +20,6 @@
<ItemsControl.ItemTemplate>
<DataTemplate DataType="model:MResult">
<Border BorderBrush="Gray" BorderThickness="1" Margin="5" Padding="5">
<!-- Parent StackPanel for Word and Phoneme -->
<StackPanel>
<!-- Word displayed on the first line -->
<TextBlock x:Name="WordTextBlock"
Expand Down
11 changes: 10 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,16 @@ shallow_clone: true
nuget:
project_feed: true
before_build:
- cmd: nuget restore
- ps: >-
git config --global credential.helper store
Set-Content -Path "$HOME\.git-credentials" -Value "https://$($env:access_token):[email protected]`n" -NoNewline
git config --global user.email "[email protected]"
git config --global user.name "appveyor"
nuget restore
build:
project: Mirivoice.sln
parallel: true
Expand Down

0 comments on commit f1e9faa

Please sign in to comment.