Update NuGet packages targets files

This commit is contained in:
Chuck Walbourn 2022-10-17 17:07:13 -07:00
Родитель 19be60a379
Коммит 3dcfbab1d8
6 изменённых файлов: 39 добавлений и 33 удалений

Просмотреть файл

@ -10,7 +10,7 @@
<description>This version is for Windows desktop applications using Visual Studio 2019 or Visual Studio 2022 and supports Windows 7 / DirectX 11.
DirectXMesh, a shared source library for performing various geometry content processing operations including generating normals and tangent frames, triangle adjacency computations, vertex cache optimization, and meshlet generation.</description>
<releaseNotes>Matches the July 29, 2022 release on GitHub.</releaseNotes>
<releaseNotes>Matches the October 17, 2022 release on GitHub.</releaseNotes>
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=324981</projectUrl>
<repository type="git" url="https://github.com/microsoft/DirectXMesh.git" />
<icon>images\icon.jpg</icon>
@ -30,11 +30,11 @@ DirectXMesh, a shared source library for performing various geometry content pro
<file target="include" src="Utilities\*.h" />
<file target="native\lib\Win32\Debug" src="DirectXMesh\Bin\Desktop_2019\Win32\Debug\*.lib" />
<file target="native\lib\Win32\Debug" src="DirectXMesh\Bin\Desktop_2019\Win32\Debug\*.pdb" />
<file target="native\lib\x86\Debug" src="DirectXMesh\Bin\Desktop_2019\Win32\Debug\*.lib" />
<file target="native\lib\x86\Debug" src="DirectXMesh\Bin\Desktop_2019\Win32\Debug\*.pdb" />
<file target="native\lib\Win32\Release" src="DirectXMesh\Bin\Desktop_2019\Win32\Release\*.lib" />
<file target="native\lib\Win32\Release" src="DirectXMesh\Bin\Desktop_2019\Win32\Release\*.pdb" />
<file target="native\lib\x86\Release" src="DirectXMesh\Bin\Desktop_2019\Win32\Release\*.lib" />
<file target="native\lib\x86\Release" src="DirectXMesh\Bin\Desktop_2019\Win32\Release\*.pdb" />
<file target="native\lib\x64\Debug" src="DirectXMesh\Bin\Desktop_2019\x64\Debug\*.lib" />
<file target="native\lib\x64\Debug" src="DirectXMesh\Bin\Desktop_2019\x64\Debug\*.pdb" />

Просмотреть файл

@ -4,12 +4,18 @@
<PropertyGroup Label="Debug" Condition="'$(Configuration.ToLower())' == 'debug'">
<NuGetConfiguration>Debug</NuGetConfiguration>
</PropertyGroup>
<PropertyGroup Label="Non_Debug" Condition="'$(Configuration.ToLower())' != 'debug'">
<PropertyGroup Label="Non_Debug" Condition="'$(Configuration.ToLower())' == 'profile'">
<NuGetConfiguration>Release</NuGetConfiguration>
</PropertyGroup>
<PropertyGroup Label="Non_Debug" Condition="'$(Configuration.ToLower())' == 'release'">
<NuGetConfiguration>Release</NuGetConfiguration>
</PropertyGroup>
<PropertyGroup Condition="'$(NuGetConfiguration)' == ''">
<NuGetConfiguration>Release</NuGetConfiguration>
</PropertyGroup>
<PropertyGroup>
<directxmesh-LibPath>$(MSBuildThisFileDirectory)..\..\native\lib\$(Platform)\$(NuGetConfiguration)</directxmesh-LibPath>
<directxmesh-LibPath>$(MSBuildThisFileDirectory)..\..\native\lib\$(PlatformTarget)\$(NuGetConfiguration)</directxmesh-LibPath>
</PropertyGroup>
<ItemDefinitionGroup>

Просмотреть файл

@ -10,7 +10,7 @@
<description>This version is for Windows desktop applications using Visual Studio 2019 or Visual Studio 2022 and supports Windows 10 / Windows 11 including both DirectX 11 and DirectX 12.
DirectXMesh, a shared source library for performing various geometry content processing operations including generating normals and tangent frames, triangle adjacency computations, vertex cache optimization, and meshlet generation.</description>
<releaseNotes>Matches the July 29, 2022 release on GitHub.</releaseNotes>
<releaseNotes>Matches the October 17, 2022 release on GitHub.</releaseNotes>
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=324981</projectUrl>
<repository type="git" url="https://github.com/microsoft/DirectXMesh.git" />
<icon>images\icon.jpg</icon>
@ -30,11 +30,11 @@ DirectXMesh, a shared source library for performing various geometry content pro
<file target="include" src="Utilities\*.h" />
<file target="native\lib\Win32\Debug" src="DirectXMesh\Bin\Desktop_2019_Win10\Win32\Debug\*.lib" />
<file target="native\lib\Win32\Debug" src="DirectXMesh\Bin\Desktop_2019_Win10\Win32\Debug\*.pdb" />
<file target="native\lib\x86\Debug" src="DirectXMesh\Bin\Desktop_2019_Win10\Win32\Debug\*.lib" />
<file target="native\lib\x86\Debug" src="DirectXMesh\Bin\Desktop_2019_Win10\Win32\Debug\*.pdb" />
<file target="native\lib\Win32\Release" src="DirectXMesh\Bin\Desktop_2019_Win10\Win32\Release\*.lib" />
<file target="native\lib\Win32\Release" src="DirectXMesh\Bin\Desktop_2019_Win10\Win32\Release\*.pdb" />
<file target="native\lib\x86\Release" src="DirectXMesh\Bin\Desktop_2019_Win10\Win32\Release\*.lib" />
<file target="native\lib\x86\Release" src="DirectXMesh\Bin\Desktop_2019_Win10\Win32\Release\*.pdb" />
<file target="native\lib\x64\Debug" src="DirectXMesh\Bin\Desktop_2019_Win10\x64\Debug\*.lib" />
<file target="native\lib\x64\Debug" src="DirectXMesh\Bin\Desktop_2019_Win10\x64\Debug\*.pdb" />

Просмотреть файл

@ -2,21 +2,20 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Label="Debug" Condition="'$(Configuration.ToLower())' == 'debug'">
<_NuGetConfiguration>Debug</_NuGetConfiguration>
<NuGetConfiguration>Debug</NuGetConfiguration>
</PropertyGroup>
<PropertyGroup Label="Non_Debug" Condition="'$(Configuration.ToLower())' != 'debug'">
<_NuGetConfiguration>Release</_NuGetConfiguration>
<PropertyGroup Label="Non_Debug" Condition="'$(Configuration.ToLower())' == 'profile'">
<NuGetConfiguration>Release</NuGetConfiguration>
</PropertyGroup>
<PropertyGroup Condition="'$(PlatformTarget)' == 'x64'">
<_NuGetPlatform>x64</_NuGetPlatform>
<PropertyGroup Label="Non_Debug" Condition="'$(Configuration.ToLower())' == 'release'">
<NuGetConfiguration>Release</NuGetConfiguration>
</PropertyGroup>
<PropertyGroup Condition="'$(_NuGetPlatform)' == ''">
<_NuGetPlatform>$(Platform)</_NuGetPlatform>
<PropertyGroup Condition="'$(NuGetConfiguration)' == ''">
<NuGetConfiguration>Release</NuGetConfiguration>
</PropertyGroup>
<PropertyGroup>
<directxmesh-LibPath>$(MSBuildThisFileDirectory)..\..\native\lib\$(_NuGetPlatform)\$(_NuGetConfiguration)</directxmesh-LibPath>
<directxmesh-LibPath>$(MSBuildThisFileDirectory)..\..\native\lib\$(PlatformTarget)\$(NuGetConfiguration)</directxmesh-LibPath>
</PropertyGroup>
<ItemDefinitionGroup>
@ -33,9 +32,4 @@
</ClCompile>
</ItemDefinitionGroup>
<PropertyGroup>
<_NuGetConfiguration></_NuGetConfiguration>
<_NuGetPlatform></_NuGetPlatform>
</PropertyGroup>
</Project>

Просмотреть файл

@ -10,7 +10,7 @@
<description>This version is for Universal Windows Platform apps on Windows 10 / Windows 11 using Visual Studio 2019 or Visual Studio 2022.
DirectXMesh, a shared source library for performing various geometry content processing operations including generating normals and tangent frames, triangle adjacency computations, vertex cache optimization, and meshlet generation.</description>
<releaseNotes>Matches the July 29, 2022 release on GitHub.</releaseNotes>
<releaseNotes>Matches the October 17, 2022 release on GitHub.</releaseNotes>
<projectUrl>http://go.microsoft.com/fwlink/?LinkID=324981</projectUrl>
<repository type="git" url="https://github.com/microsoft/DirectXMesh.git" />
<icon>images\icon.jpg</icon>
@ -42,11 +42,11 @@ DirectXMesh, a shared source library for performing various geometry content pro
<file target="native\lib\ARM64\Release" src="DirectXMesh\Bin\Windows10_2019\ARM64\Release\*.lib" />
<file target="native\lib\ARM64\Release" src="DirectXMesh\Bin\Windows10_2019\ARM64\Release\*.pdb" />
<file target="native\lib\Win32\Debug" src="DirectXMesh\Bin\Windows10_2019\Win32\Debug\*.lib" />
<file target="native\lib\Win32\Debug" src="DirectXMesh\Bin\Windows10_2019\Win32\Debug\*.pdb" />
<file target="native\lib\x86\Debug" src="DirectXMesh\Bin\Windows10_2019\Win32\Debug\*.lib" />
<file target="native\lib\x86\Debug" src="DirectXMesh\Bin\Windows10_2019\Win32\Debug\*.pdb" />
<file target="native\lib\Win32\Release" src="DirectXMesh\Bin\Windows10_2019\Win32\Release\*.lib" />
<file target="native\lib\Win32\Release" src="DirectXMesh\Bin\Windows10_2019\Win32\Release\*.pdb" />
<file target="native\lib\x86\Release" src="DirectXMesh\Bin\Windows10_2019\Win32\Release\*.lib" />
<file target="native\lib\x86\Release" src="DirectXMesh\Bin\Windows10_2019\Win32\Release\*.pdb" />
<file target="native\lib\x64\Debug" src="DirectXMesh\Bin\Windows10_2019\x64\Debug\*.lib" />
<file target="native\lib\x64\Debug" src="DirectXMesh\Bin\Windows10_2019\x64\Debug\*.pdb" />

Просмотреть файл

@ -4,12 +4,18 @@
<PropertyGroup Label="Debug" Condition="'$(Configuration.ToLower())' == 'debug'">
<NuGetConfiguration>Debug</NuGetConfiguration>
</PropertyGroup>
<PropertyGroup Label="Non_Debug" Condition="'$(Configuration.ToLower())' != 'debug'">
<PropertyGroup Label="Non_Debug" Condition="'$(Configuration.ToLower())' == 'profile'">
<NuGetConfiguration>Release</NuGetConfiguration>
</PropertyGroup>
<PropertyGroup Label="Non_Debug" Condition="'$(Configuration.ToLower())' == 'release'">
<NuGetConfiguration>Release</NuGetConfiguration>
</PropertyGroup>
<PropertyGroup Condition="'$(NuGetConfiguration)' == ''">
<NuGetConfiguration>Release</NuGetConfiguration>
</PropertyGroup>
<PropertyGroup>
<directxmesh-LibPath>$(MSBuildThisFileDirectory)..\..\native\lib\$(Platform)\$(NuGetConfiguration)</directxmesh-LibPath>
<directxmesh-LibPath>$(MSBuildThisFileDirectory)..\..\native\lib\$(PlatformTarget)\$(NuGetConfiguration)</directxmesh-LibPath>
</PropertyGroup>
<ItemDefinitionGroup>