mirror of
https://gitee.com/chinware/atomui.git
synced 2024-11-29 18:38:16 +08:00
43 lines
2.9 KiB
XML
43 lines
2.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="$(MSBuildThisFileDirectory)..\..\build\Common.props"/>
|
|
<Import Project="$(MSBuildThisFileDirectory)..\..\build\Nuget.props"/>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia"/>
|
|
<PackageReference Include="Avalonia.Svg"/>
|
|
<PackageReference Include="Avalonia.Win32"/>
|
|
<PackageReference Include="System.Reactive"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'DEBUG' ">
|
|
<ProjectReference Include="../../src/AtomUI.Base/AtomUI.Base.csproj" />
|
|
<ProjectReference Include="../../src/AtomUI.Controls/AtomUI.Controls.csproj" />
|
|
<ProjectReference Include="../../src/AtomUI.Icon/AtomUI.Icon.csproj" />
|
|
<ProjectReference Include="../../src/AtomUI.Icon.AntDesign/AtomUI.Icon.AntDesign.csproj" />
|
|
<ProjectReference Include="../../src/AtomUI.Theme/AtomUI.Theme.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'RELEASE' ">
|
|
<Reference Include="../../_output/Bin/Release/AtomUI.Base.dll" />
|
|
<Reference Include="../../_output/Bin/Release/AtomUI.Controls.dll" />
|
|
<Reference Include="../../_output/Bin/Release/AtomUI.Icon.dll" />
|
|
<Reference Include="../../_output/Bin/Release/AtomUI.Icon.AntDesign.dll" />
|
|
<Reference Include="../../_output/Bin/Release/AtomUI.Theme.dll" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(Configuration)' == 'RELEASE' ">
|
|
<Content Pack="true" Visible="false" PackagePath="lib\$(TargetFramework)" Include="$(MSBuildThisFileDirectory)..\..\_output\Bin\Release\AtomUI.Base.dll" />
|
|
<Content Pack="true" Visible="false" PackagePath="lib\$(TargetFramework)" Include="$(MSBuildThisFileDirectory)..\..\_output\Bin\Release\AtomUI.Controls.dll" />
|
|
<Content Pack="true" Visible="false" PackagePath="lib\$(TargetFramework)" Include="$(MSBuildThisFileDirectory)..\..\_output\Bin\Release\AtomUI.Icon.dll" />
|
|
<Content Pack="true" Visible="false" PackagePath="lib\$(TargetFramework)" Include="$(MSBuildThisFileDirectory)..\..\_output\Bin\Release\AtomUI.Icon.AntDesign.dll" />
|
|
<Content Pack="true" Visible="false" PackagePath="lib\$(TargetFramework)" Include="$(MSBuildThisFileDirectory)..\..\_output\Bin\Release\AtomUI.Theme.dll" />
|
|
<Content Pack="true" Visible="false" PackagePath="lib\$(TargetFramework)" Include="$(MSBuildThisFileDirectory)..\..\_output\Bin\Release\AtomUI.Base.pdb" />
|
|
<Content Pack="true" Visible="false" PackagePath="lib\$(TargetFramework)" Include="$(MSBuildThisFileDirectory)..\..\_output\Bin\Release\AtomUI.Controls.pdb" />
|
|
<Content Pack="true" Visible="false" PackagePath="lib\$(TargetFramework)" Include="$(MSBuildThisFileDirectory)..\..\_output\Bin\Release\AtomUI.Icon.pdb" />
|
|
<Content Pack="true" Visible="false" PackagePath="lib\$(TargetFramework)" Include="$(MSBuildThisFileDirectory)..\..\_output\Bin\Release\AtomUI.Icon.AntDesign.pdb" />
|
|
<Content Pack="true" Visible="false" PackagePath="lib\$(TargetFramework)" Include="$(MSBuildThisFileDirectory)..\..\_output\Bin\Release\AtomUI.Theme.pdb" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|