Skip to content

Commit a8283c2

Browse files
committed
Add Mint.NuGet project.
1 parent d23d61d commit a8283c2

File tree

3 files changed

+54
-64
lines changed

3 files changed

+54
-64
lines changed

BuildAllTargets.proj

+5-64
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,12 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project
3-
DefaultTargets="Restore;Build"
3+
DefaultTargets="Packaging"
44
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
5-
<PropertyGroup>
6-
<SolutionPath>$(MSBuildThisFileDirectory)*.sln</SolutionPath>
7-
</PropertyGroup>
8-
<ItemGroup>
9-
<ProjectReference Include="$(SolutionPath)">
10-
<AdditionalProperties>Configuration=Debug;Platform=x86</AdditionalProperties>
11-
</ProjectReference>
12-
<ProjectReference Include="$(SolutionPath)">
13-
<AdditionalProperties>Configuration=Release;Platform=x86</AdditionalProperties>
14-
</ProjectReference>
15-
<ProjectReference Include="$(SolutionPath)">
16-
<AdditionalProperties>Configuration=Debug;Platform=x64</AdditionalProperties>
17-
</ProjectReference>
18-
<ProjectReference Include="$(SolutionPath)">
19-
<AdditionalProperties>Configuration=Release;Platform=x64</AdditionalProperties>
20-
</ProjectReference>
21-
<ProjectReference Include="$(SolutionPath)">
22-
<AdditionalProperties>Configuration=Debug;Platform=ARM64</AdditionalProperties>
23-
</ProjectReference>
24-
<ProjectReference Include="$(SolutionPath)">
25-
<AdditionalProperties>Configuration=Release;Platform=ARM64</AdditionalProperties>
26-
</ProjectReference>
27-
</ItemGroup>
28-
<ItemGroup>
29-
<!-- <PackagingProjectReference Include="$(MSBuildThisFileDirectory)Mile.Project.Windows\Mile.Project.NuGetPackaging.proj">
30-
<AdditionalProperties>NuspecFile=$(MSBuildThisFileDirectory)SampleProject\SampleProject.nuspec</AdditionalProperties>
31-
</PackagingProjectReference> -->
32-
</ItemGroup>
33-
<Target Name="Restore" >
5+
<Target Name="Packaging">
346
<MSBuild
35-
Projects="@(ProjectReference)"
36-
Targets="Restore"
7+
Projects="$(MSBuildThisFileDirectory)Mile.Project.Windows\Mile.Project.NuGetPackaging.proj"
8+
Targets="Restore;Build"
379
StopOnFirstFailure="True"
38-
Properties="PreferredToolArchitecture=x64" />
39-
<MSBuild
40-
Projects="@(PackagingProjectReference)"
41-
Targets="Restore"
42-
StopOnFirstFailure="True"
43-
Properties="PreferredToolArchitecture=x64" />
44-
</Target>
45-
<Target Name="Build" >
46-
<MSBuild
47-
Projects="@(ProjectReference)"
48-
Targets="Build"
49-
BuildInParallel="True"
50-
StopOnFirstFailure="True"
51-
Properties="PreferredToolArchitecture=x64" />
52-
<MSBuild
53-
Projects="@(PackagingProjectReference)"
54-
Targets="Build"
55-
StopOnFirstFailure="True"
56-
Properties="PreferredToolArchitecture=x64" />
57-
</Target>
58-
<Target Name="Rebuild" >
59-
<MSBuild
60-
Projects="@(ProjectReference)"
61-
Targets="Rebuild"
62-
BuildInParallel="True"
63-
StopOnFirstFailure="True"
64-
Properties="PreferredToolArchitecture=x64" />
65-
<MSBuild
66-
Projects="@(PackagingProjectReference)"
67-
Targets="Rebuild"
68-
StopOnFirstFailure="True"
69-
Properties="PreferredToolArchitecture=x64" />
10+
Properties="PreferredToolArchitecture=x64;NuspecFile=$(MSBuildThisFileDirectory)Mint.NuGet\Mint.nuspec" />
7011
</Target>
7112
</Project>

Mint.NuGet/Mint.nuspec

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
PROJECT: Mouri's Internal NT API Collections (MINT)
4+
FILE: Mint.nuspec
5+
PURPOSE: NuGet package definition for MINT
6+
7+
LICENSE: The MIT License
8+
9+
MAINTAINER: MouriNaruto ([email protected])
10+
-->
11+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
12+
<metadata>
13+
<id>MINT</id>
14+
<version>2024.0.0</version>
15+
<description>Contains the definitions for the Windows Internal UserMode API from ntdll.dll, samlib.dll and winsta.dll</description>
16+
<authors>Kenji Mouri</authors>
17+
<owners>初雨团队</owners>
18+
<projectUrl>https://github.com/Chuyu-Team/MINT</projectUrl>
19+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
20+
<license type="file">License.md</license>
21+
<readme>ReadMe.md</readme>
22+
<repository type="git" url="https://github.com/Chuyu-Team/MINT.git" />
23+
</metadata>
24+
<files>
25+
26+
<file src="..\Mint\**\*.*" target="Source\Native" />
27+
28+
<file src="Mint.props" target="build\native"/>
29+
30+
<file src="..\ReadMe.md" target="."/>
31+
<file src="..\License.md" target="."/>
32+
33+
</files>
34+
</package>

Mint.NuGet/Mint.props

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
PROJECT: Mouri's Internal NT API Collections (MINT)
4+
FILE: Mint.props
5+
PURPOSE: MSBuild props file for MINT
6+
7+
LICENSE: The MIT License
8+
9+
MAINTAINER: MouriNaruto ([email protected])
10+
-->
11+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
12+
<PropertyGroup>
13+
<IncludePath>$(MSBuildThisFileDirectory)..\..\Source\Native\;$(IncludePath)</IncludePath>
14+
</PropertyGroup>
15+
</Project>

0 commit comments

Comments
 (0)