-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
55 lines (41 loc) · 2.16 KB
/
Copy pathDirectory.Build.props
File metadata and controls
55 lines (41 loc) · 2.16 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project>
<PropertyGroup Condition="'$(IsTestProject)' != 'true' AND '$(IsPackable)' != 'false'">
<PackageId>$(MSBuildProjectName)</PackageId>
<Product>OutWit.Database</Product>
<LangVersion>latest</LangVersion>
<SignAssembly>False</SignAssembly>
<Authors>Dmitry Ratner</Authors>
<Company>OutWit</Company>
<Copyright>Copyright © $([System.DateTime]::UtcNow.Year) Dmitry Ratner</Copyright>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageProjectUrl>https://github.com/dmitrat/WitDatabase/</PackageProjectUrl>
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
<!--<PackageIcon>OutWit-logo.png</PackageIcon>-->
<!--<PackageLicenseFile>LICENSE</PackageLicenseFile>-->
<!--<PackageReadmeFile>README.md</PackageReadmeFile>-->
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>true</AppendRuntimeIdentifierToOutputPath>
<PackagesDropDir>$(SolutionDir)@NuGet\</PackagesDropDir>
</PropertyGroup>
<!--<ItemGroup Condition="'$(IsTestProject)' != 'true'">
<None Include="LICENSE" Pack="true" PackagePath="\" />
<None Include="OutWit-logo.png" Pack="true" PackagePath="\" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>-->
<!--<ItemGroup Condition="'$(IsTestProject)' != 'true'">
<NuGetFiles Include="$(TargetDir)*$(TargetName)*.nupkg" />
<NuGetFiles Include="$(TargetDir)*$(TargetName)*.snupkg" />
</ItemGroup>-->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.301">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<!--<Target Name="PostBuild" AfterTargets="Pack" Condition="'$(Configuration)' == 'Release' AND '$(IsTestProject)' != 'true'">
<Copy SourceFiles="@(NuGetFiles)" DestinationFolder="$(SolutionDir)@NuGet\" SkipUnchangedFiles="true" OverwriteReadOnlyFiles="true" />
</Target>-->
</Project>