-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDirectory.Build.props
21 lines (21 loc) · 1.24 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project>
<Import Project="build\Version.props" />
<PropertyGroup>
<PackageOutputPath>$(MSBuildThisFileDirectory)bin\$(Configuration)</PackageOutputPath>
<Authors>dotnet-campus</Authors>
<Company>dotnet-campus</Company>
<LangVersion>latest</LangVersion>
<DevelopmentDependency>true</DevelopmentDependency>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Copyright (c) 2018-2023 dotnet-campus</Copyright>
<PackageProjectUrl>https://github.com/dotnet-campus/SourceFusion</PackageProjectUrl>
<RepositoryUrl>https://github.com/dotnet-campus/SourceFusion.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>source;dotnet;nuget;msbuild;compile</PackageTags>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' ">
<!-- 现在 VisualStudio 2022 没有带上 .NET Framework 4.5 的负载,为了让大家打开项目就能构建,于是加上这个引用。详细请参阅 https://blog.walterlv.com/post/support-old-netfx-on-vs2022-or-later.html -->
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
</ItemGroup>
</Project>