diff options
| author | Dennis Brentjes <d.brentjes@gmail.com> | 2019-12-15 22:30:38 +0100 |
|---|---|---|
| committer | Dennis Brentjes <d.brentjes@gmail.com> | 2019-12-15 22:30:38 +0100 |
| commit | 0f98b398520a3f5cc6a299e7fd3b8fab494480d7 (patch) | |
| tree | a1c0ab173723c47adf23d7dc5c1894185052cc39 /Avalar.csproj | |
| download | avalar-0f98b398520a3f5cc6a299e7fd3b8fab494480d7.tar.gz avalar-0f98b398520a3f5cc6a299e7fd3b8fab494480d7.tar.bz2 avalar-0f98b398520a3f5cc6a299e7fd3b8fab494480d7.zip | |
Initial commit, skeleton project.
Diffstat (limited to 'Avalar.csproj')
| -rw-r--r-- | Avalar.csproj | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Avalar.csproj b/Avalar.csproj new file mode 100644 index 0000000..93ac3a3 --- /dev/null +++ b/Avalar.csproj @@ -0,0 +1,44 @@ +<Project Sdk="Microsoft.NET.Sdk"> + <PropertyGroup> + <OutputType>WinExe</OutputType> + <TargetFramework>netcoreapp3.0</TargetFramework> + <AllowUnsafeBlocks>false</AllowUnsafeBlocks> + </PropertyGroup> + <ItemGroup> + <Compile Update="**\*.xaml.cs"> + <DependentUpon>%(Filename)</DependentUpon> + </Compile> + <AvaloniaResource Include="**\*.xaml"> + <SubType>Designer</SubType> + </AvaloniaResource> + </ItemGroup> + <ItemGroup> + <AvaloniaResource Remove="Views\Image\ImageControl.xaml" /> + <AvaloniaResource Remove="Views\Image\ImagePanel.xaml" /> + </ItemGroup> + <ItemGroup> + <None Remove="Views\Image\ImageControl.xaml" /> + <None Remove="Views\Image\ImagePanel.xaml" /> + </ItemGroup> + <ItemGroup> + <PackageReference Include="Avalonia" Version="0.9.0" /> + <PackageReference Include="Avalonia.Desktop" Version="0.9.0" /> + <PackageReference Include="Avalonia.ReactiveUI" Version="0.9.0" /> + <PackageReference Include="Avalonia.Xaml.Behaviors" Version="0.9.0" /> + </ItemGroup> + <ItemGroup> + <EmbeddedResource Include="Views\Image\ImageControl.xaml"> + <Generator>MSBuild:Compile</Generator> + </EmbeddedResource> + </ItemGroup> + <ItemGroup> + <EmbeddedResource Include="Views\Image\ImagePanel.xaml"> + <Generator>MSBuild:Compile</Generator> + </EmbeddedResource> + </ItemGroup> + <ItemGroup> + <Compile Update="Views\Image\ImageControl.xaml.cs"> + <DependentUpon>ImageControl.xaml</DependentUpon> + </Compile> + </ItemGroup> +</Project> |
