mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-06 01:06:37 +08:00
38 lines
1.7 KiB
XML
38 lines
1.7 KiB
XML
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<!-- Project properties -->
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net45;net46;netcoreapp3.0</TargetFrameworks>
|
|
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
<LangVersion>latest</LangVersion>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
<NoError>$(NoError);CS1591</NoError>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<!-- Add the references for all projects and targets -->
|
|
<ItemGroup>
|
|
<PackageReference Include="JetBrains.Annotations" Version="2019.*" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="**\*.png;**\*.jpg;**\*.ico" />
|
|
<Resource Include="**\*.png;**\*.jpg;**\*.ico" />
|
|
</ItemGroup>
|
|
|
|
<!-- SourceLink -->
|
|
<PropertyGroup>
|
|
<!-- Optional: Declare that the Repository URL can be published to NuSpec -->
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<!-- Optional: Embed source files that are not tracked by the source control manager to the PDB -->
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<!-- Optional: Include PDB in the built .nupkg -->
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
<!-- https://github.com/dotnet/sourcelink/blob/master/docs/README.md#embedallsources -->
|
|
<!-- <EmbedAllSources>true</EmbedAllSources>-->
|
|
</PropertyGroup>
|
|
|
|
</Project> |