-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from nooperation/add_nuget_config
Add nuget config
- Loading branch information
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup Condition="'$(Platform)' == 'x64'"> | ||
<None Include="$(MSBuildThisFileDirectory)..\contentFiles\x64\LibUserPreferences.dll"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<Visible>False</Visible> | ||
</None> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0"?> | ||
<package > | ||
<metadata> | ||
<id>SanTools.LibUserPreferences</id> | ||
<version>$version$</version> | ||
<authors>NoOperation</authors> | ||
<owners>NoOperation</owners> | ||
<licenseUrl>https://github.com/nooperation/UserPreferencesExplorer/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/nooperation/UserPreferencesExplorer/</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Tools for interacting with the encrypted UserPreferences.bag for Project Sansar </description> | ||
<copyright>Copyright 2018</copyright> | ||
<tags>Native SanTools Sansar UserPreferences</tags> | ||
</metadata> | ||
<files> | ||
<file src="build\**" target="build" /> | ||
<file src="x64\Release\LibUserPreferences.dll" target="contentFiles\x64\LibUserPreferences.dll" /> | ||
</files> | ||
</package> |