-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (26 loc) · 1.31 KB
/
Directory.Build.props
File metadata and controls
26 lines (26 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Version>3.1.4</Version>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<LangVersion>latest</LangVersion>
<NoWarn>CS1591</NoWarn>
<AssemblyOriginatorKeyFile>$(SolutionDir)Key.snk</AssemblyOriginatorKeyFile>
<NoPackageAnalysis>true</NoPackageAnalysis>
<PackageLicenseUrl>http://www.opensource.org/licenses/mit-license.php</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageOutputPath>$(SolutionDir)nugets</PackageOutputPath>
<TargetsForTfmSpecificContentInPackage>$(TargetsForTfmSpecificContentInPackage);IncludeAllInPackage</TargetsForTfmSpecificContentInPackage>
<Authors>Simon Cropp</Authors>
<PackageProjectUrl>http://github.com/Fody/Fody</PackageProjectUrl>
<PackageIconUrl>https://raw.github.com/Fody/Fody/master/package_icon.png</PackageIconUrl>
<PackageTags>ILWeaving, Fody, Cecil, AOP</PackageTags>
</PropertyGroup>
<Target Name="IncludeAllInPackage">
<ItemGroup>
<TfmSpecificPackageFile Include="$(OutputPath)\*.*"
Exclude="**/$(TargetName).*;*.json;**/Microsoft*;**/System*"
PackagePath="$(BuildOutputTargetFolder)/$(TargetFramework)" />
</ItemGroup>
</Target>
</Project>