Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
MultiTargetingProject/src/Ghk.MultiTargeting/Ghk.MultiTargeting.csproj
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
47 lines (42 sloc)
2.01 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="MSBuild.Sdk.Extras"> | |
<PropertyGroup> | |
<TargetFrameworks>net46;net47;uap10.0</TargetFrameworks> | |
<AssemblyName>Ghk.MultiTargeting</AssemblyName> | |
<RootNamespace>Ghk.MultiTargeting</RootNamespace> | |
<DefaultLanguage>en-US</DefaultLanguage> | |
<PackageId>Ghk.MultiTargeting</PackageId> | |
<PackageVersion>1.0.0-alpha0001</PackageVersion> | |
<Description>Multi targeting example library for XAML projects.</Description> | |
<PackageTags>multitargeting;netstandard;uap;wpf;uwp</PackageTags> | |
</PropertyGroup> | |
<ItemGroup> | |
<PackageReference Include="Catel.Core" Version="5.12.22" /> | |
<PackageReference Include="Catel.MVVM" Version="5.12.22" /> | |
<PackageReference Include="Catel.Fody" Version="4.9.0" PrivateAssets="all" /> | |
<PackageReference Include="Fody" Version="6.7.0" PrivateAssets="all"> | |
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | |
</PackageReference> | |
<PackageReference Include="ModuleInit.Fody" Version="2.1.1" PrivateAssets="all" /> | |
<PackageReference Include="Obsolete.Fody" Version="5.3.0" PrivateAssets="all" /> | |
<PackageReference Include="WpfAnalyzers" Version="2.2.0.2" PrivateAssets="all"> | |
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | |
</PackageReference> | |
</ItemGroup> | |
<ItemGroup> | |
<Compile Update="Properties\Resources.Designer.cs"> | |
<DesignTime>True</DesignTime> | |
<AutoGen>True</AutoGen> | |
<DependentUpon>Resources.resx</DependentUpon> | |
</Compile> | |
</ItemGroup> | |
<ItemGroup> | |
<EmbeddedResource Update="Properties\Resources.resx"> | |
<Generator>ResXFileCodeGenerator</Generator> | |
<LastGenOutput>Resources.Designer.cs</LastGenOutput> | |
</EmbeddedResource> | |
</ItemGroup> | |
<ItemGroup> | |
<PackageReference Update="NETStandard.Library" Version="2.0.3" /> | |
</ItemGroup> | |
<Import Project="$(MSBuildProjectDirectory)\..\Directory.build.shared.explicit.props" Condition="Exists('$(MSBuildProjectDirectory)\..\Directory.build.shared.explicit.props')" /> | |
</Project> |