1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
- <Nullable>enable</Nullable>
- <BuiltInComInteropSupport>true</BuiltInComInteropSupport>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- <AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
- <AssemblyName>UnloadableAssemblyLoadContextPlug</AssemblyName>
- <RootNamespace>UnloadableAssemblyLoadContextPlug</RootNamespace>
- </PropertyGroup>
- <ItemGroup>
- <AvaloniaResource Include="Assets\**"/>
- </ItemGroup>
- <ItemGroup>
- <Compile Update="**\*.xaml.cs">
- <DependentUpon>%(Filename)</DependentUpon>
- </Compile>
- <AvaloniaResource Include="**\*.xaml">
- <SubType>Designer</SubType>
- </AvaloniaResource>
- <AvaloniaResource Include="Assets\*"/>
- <AvaloniaResource Include="Assets\Fonts\*"/>
- </ItemGroup>
- <ImportGroup>
- <Import Project="..\..\..\build\BuildTargets.targets" Condition="Exists('..\..\..\build\BuildTargets.targets')"/>
- <Import Project="..\..\..\build\SourceGenerators.props"/>
- </ImportGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\packages\Avalonia\Avalonia.csproj"/>
- <ProjectReference Include="..\..\..\src\Avalonia.Desktop\Avalonia.Desktop.csproj"/>
- <ProjectReference Condition="'$(Configuration)' == 'Debug'" Include="..\..\..\src\Avalonia.Diagnostics\Avalonia.Diagnostics.csproj"/>
- <ProjectReference Include="..\..\..\src\Avalonia.Fonts.Inter\Avalonia.Fonts.Inter.csproj"/>
- <ProjectReference Include="..\..\..\src\Avalonia.ReactiveUI\Avalonia.ReactiveUI.csproj"/>
- <ProjectReference Include="..\..\..\src\Avalonia.Themes.Fluent\Avalonia.Themes.Fluent.csproj"/>
- <ProjectReference Include="..\..\..\src\Markup\Avalonia.Markup.Xaml.Loader\Avalonia.Markup.Xaml.Loader.csproj"/>
- </ItemGroup>
- <ItemGroup>
- <UpToDateCheckInput Remove="Views\MainWindow.axaml"/>
- </ItemGroup>
- </Project>
|