You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DiscordChatExporter/DiscordChatExporter.Gui/DiscordChatExporter.Gui.csproj

40 lines
1.5 KiB

<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
7 years ago
<PropertyGroup>
<OutputType>WinExe</OutputType>
<AssemblyName>DiscordChatExporter</AssemblyName>
<UseWPF>true</UseWPF>
<ApplicationIcon>../favicon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Resource Include="../favicon.ico" />
7 years ago
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<PackageReference Include="DotnetRuntimeBootstrapper" Version="1.1.2" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Gress" Version="1.2.0" />
3 years ago
<PackageReference Include="MaterialDesignColors" Version="2.0.1" />
3 years ago
<PackageReference Include="MaterialDesignThemes" Version="4.0.0" />
<PackageReference Include="Microsoft.Xaml.Behaviors.Wpf" Version="1.1.37" />
<PackageReference Include="Ookii.Dialogs.Wpf" Version="4.0.0" />
<PackageReference Include="Onova" Version="2.6.2" />
<PackageReference Include="Stylet" Version="1.3.6" />
5 years ago
<PackageReference Include="Tyrrrz.Extensions" Version="1.6.5" />
<PackageReference Include="Tyrrrz.Settings" Version="1.3.4" />
3 years ago
<PackageReference Include="PropertyChanged.Fody" Version="3.4.0" PrivateAssets="all" />
6 years ago
</ItemGroup>
<ItemGroup>
3 years ago
<ProjectReference Include="..\DiscordChatExporter.Core\DiscordChatExporter.Core.csproj" />
</ItemGroup>
<Target Name="Format XAML" AfterTargets="BeforeBuild">
<Exec Command="dotnet tool restore" />
<Exec Command="dotnet xstyler -r -d ." />
</Target>
7 years ago
</Project>