mirror of
https://github.com/ckaczor/wpf-notifyicon.git
synced 2026-01-14 10:00:10 -05:00
43 lines
1.7 KiB
XML
43 lines
1.7 KiB
XML
<Project>
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net40;net45;net452;net46;net462;net47;net472</TargetFrameworks>
|
|
<LangVersion>7.3</LangVersion>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
|
|
<DebugType>full</DebugType>
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
<IsSampleProject>$(MSBuildProjectName.Contains('Sample'))</IsSampleProject>
|
|
</PropertyGroup>
|
|
|
|
<Choose>
|
|
<When Condition=" '$(IsSampleProject)' != 'true' ">
|
|
<PropertyGroup>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2*" PrivateAssets="All" />
|
|
</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>
|
|
<!-- https://github.com/dotnet/sourcelink/blob/master/docs/README.md#embedallsources -->
|
|
<EmbedAllSources>true</EmbedAllSources>
|
|
<!-- Optional: Include PDB in the built .nupkg -->
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
</PropertyGroup>
|
|
</When>
|
|
</Choose>
|
|
|
|
<ItemGroup>
|
|
<None Remove="**\*.png;**\*.jpg;**\*.ico" />
|
|
<Resource Include="**\*.png;**\*.jpg;**\*.ico" />
|
|
</ItemGroup>
|
|
|
|
</Project> |