forked from billpratt/dotnet-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
48 lines (44 loc) · 2.3 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
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project>
<PropertyGroup>
<TargetFrameworks>$(TargetFramework)</TargetFrameworks>
<Title><!-- TODO: Add this before you release the code! --></Title>
<Description><!-- TODO: Add this before you release the code! --></Description>
<PackageTags><!-- TODO: Add these before you release the code! --></PackageTags>
<Summary><!-- TODO: Add this before you release the code! --></Summary>
<RootNamespace>JustinWritesCode.$(MSBuildProjectName)</RootNamespace>
<PackageId>$(MSBuildProjectName)</PackageId>
<Authors>Justin Chase</Authors>
<Owners>Justin Chase</Owners>
<Company>Justin Chase</Company>
<Product>Justin Chase</Product>
<Copyright>© $([System.DateTime]::Now.Year) Justin Chase, All Rights Reserved</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageOutputPath>artifacts</PackageOutputPath>
<LangVersion>preview</LangVersion>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<UserSecretsId>f46585c5-564a-6584-1234-eba29ed0cfc7</UserSecretsId>
<PreserveCompilationContext>true</PreserveCompilationContext>
<ServerGarbageCollection>true</ServerGarbageCollection>
<DebugType>portable</DebugType>
<PackageIcon Condition="Exists('Icon.png')">Icon.png</PackageIcon>
<PackageIcon Condition="Exists('Icon.jpg')">Icon.jpg</PackageIcon>
<PackageReadmeFile Condition="Exists('README.md')">README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/justinwritescode/$(MSBuildProjectName)</PackageProjectUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>
<CopyDocumentationFilesFromPackages>true</CopyDocumentationFilesFromPackages>
<CopyDebugSymbolFilesFromPackages>true</CopyDebugSymbolFilesFromPackages>
</PropertyGroup>
<Import Project="Directory.Build/NuGetOutputs.props" />
<Import Project="Directory.Build/CentralPackageVersions.props" />
<Import Project="Directory.Build/NuGetizer.props" />
<Import Project="Directory.Build/CodeGeneration.props" />
<Import Project="Directory.Build/MinVer.props" />
<ItemGroup>
<PackageFile Include="$(PackageIcon)" PackagePath="" />
</ItemGroup>
</Project>