-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathMile.Project.NuGetPackaging.proj
More file actions
23 lines (21 loc) · 935 Bytes
/
Mile.Project.NuGetPackaging.proj
File metadata and controls
23 lines (21 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<!--
PROJECT: Mouri Internal Library Essentials
FILE: Mile.Project.NuGetPackaging.proj
PURPOSE: Definition for NuGet Packaging Project
LICENSE: The MIT License
MAINTAINER: MouriNaruto (Kenji.Mouri@outlook.com)
-->
<Project Sdk="Microsoft.Build.NoTargets/3.7.0">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<OutputPath>$(MileProjectBinariesPath)$(MSBuildProjectName.Split("_")[0])\</OutputPath>
<IntermediateOutputPath>$(MileProjectObjectsPath)$(MSBuildProjectName.Split("_")[0])\</IntermediateOutputPath>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<OutputFileNamesWithoutVersion>true</OutputFileNamesWithoutVersion>
<PackageOutputPath>$(MileProjectOutputPath)</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NuGet.Build.Tasks.Pack" Version="6.5.0"/>
</ItemGroup>
</Project>