Add solution and library

This commit is contained in:
Matt Nadareski
2023-09-18 00:46:04 -04:00
parent aa3b5ff9cd
commit 28dc429a39
2 changed files with 53 additions and 0 deletions

31
psxt001z.csproj Normal file
View File

@@ -0,0 +1,31 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- Assembly Properties -->
<TargetFrameworks>net48;net6.0;net7.0;net8.0</TargetFrameworks>
<RuntimeIdentifiers>win-x86;win-x64;linux-x64;osx-x64</RuntimeIdentifiers>
<Version>0.21-beta1</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!-- Package Properties -->
<Authors>Dremora, Matt Nadareski</Authors>
<Description>C# port of Dremora's tool</Description>
<Copyright>Copyright (c)2013 Dremora, Copyright (c)2018-2023 Matt Nadareski</Copyright>
<PackageProjectUrl>https://github.com/SabreTools/</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/SabreTools/psxt001z</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>libcrypt psx ps1 psone</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'!='net48'">
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>

22
psxt001z.sln Normal file
View File

@@ -0,0 +1,22 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "psxt001z", "psxt001z.csproj", "{1F3CFA21-FE9A-41C0-9919-712C612DC160}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{1F3CFA21-FE9A-41C0-9919-712C612DC160}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1F3CFA21-FE9A-41C0-9919-712C612DC160}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1F3CFA21-FE9A-41C0-9919-712C612DC160}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1F3CFA21-FE9A-41C0-9919-712C612DC160}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal