-
Notifications
You must be signed in to change notification settings - Fork 4
/
Directory.Build.props
41 lines (32 loc) · 1.68 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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<RepositoryUrl>https://github.com/MiruFx/Miru</RepositoryUrl>
<PackageProjectUrl>https://github.com/MiruFx/Miru</PackageProjectUrl>
<PackageIcon>Miru-Logo.png</PackageIcon>
<Version>0.0.1</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<PackageTags>miru asp.net .net .net-core .net8 dotnet8 efcore8 fullstack framework</PackageTags>
<Authors>Joao Carlos Clementoni</Authors>
<Copyright>Copyright (c) 2020-2024 Joao Carlos Clementoni</Copyright>
<PackageOutputPath>..\..\packages</PackageOutputPath>
<IncludeSymbols>true</IncludeSymbols>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Deterministic>true</Deterministic>
<MinVerSkip Condition="'$(Configuration)' == 'Debug'">true</MinVerSkip>
<MinVerTagPrefix>v</MinVerTagPrefix>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup Condition="$(IsPackable) == 'true'">
<None Include="..\..\docs\.vuepress\public\Miru-Logo.png" Pack="true" PackagePath="\"/>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="MinVer" Version="2.5.0" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
</Project>