diff options
author | Kyle Spearrin <kyle.spearrin@gmail.com> | 2017-08-16 22:15:11 -0400 |
---|---|---|
committer | Kyle Spearrin <kyle.spearrin@gmail.com> | 2017-08-16 22:15:11 -0400 |
commit | e44964b703bbcd64da7024730bfe75eb3d83f8a7 (patch) | |
tree | 85edd65f5445012a7696a84c9d2896329ea7fed3 /src | |
parent | 07bb1359b0cb63ced5541f2e8f6f0ef64505de40 (diff) | |
download | Otp.NET-e44964b703bbcd64da7024730bfe75eb3d83f8a7.zip Otp.NET-e44964b703bbcd64da7024730bfe75eb3d83f8a7.tar.gz Otp.NET-e44964b703bbcd64da7024730bfe75eb3d83f8a7.tar.bz2 |
cleanup old build stuff
Diffstat (limited to 'src')
-rwxr-xr-x | src/Otp.NET.UnitTests/Otp.NET.UnitTests.csproj | 17 | ||||
-rwxr-xr-x | src/Otp.NET.UnitTests/UnitTest1.cs | 14 | ||||
-rwxr-xr-x | src/Otp.NET/Otp.NET.csproj | 3 | ||||
-rw-r--r-- | src/Otp.NET/Properties/AssemblyInfo.cs | 16 |
4 files changed, 1 insertions, 49 deletions
diff --git a/src/Otp.NET.UnitTests/Otp.NET.UnitTests.csproj b/src/Otp.NET.UnitTests/Otp.NET.UnitTests.csproj deleted file mode 100755 index 27ec6e6..0000000 --- a/src/Otp.NET.UnitTests/Otp.NET.UnitTests.csproj +++ /dev/null @@ -1,17 +0,0 @@ -<Project Sdk="Microsoft.NET.Sdk"> - - <PropertyGroup> - <TargetFramework>netcoreapp1.1</TargetFramework> - </PropertyGroup> - - <ItemGroup> - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" /> - <PackageReference Include="xunit" Version="2.2.0" /> - <PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" /> - </ItemGroup> - - <ItemGroup> - <ProjectReference Include="..\Otp.NET\Otp.NET.csproj" /> - </ItemGroup> - -</Project> diff --git a/src/Otp.NET.UnitTests/UnitTest1.cs b/src/Otp.NET.UnitTests/UnitTest1.cs deleted file mode 100755 index 7f2737c..0000000 --- a/src/Otp.NET.UnitTests/UnitTest1.cs +++ /dev/null @@ -1,14 +0,0 @@ -using System;
-using Xunit;
-
-namespace Otp.NET.UnitTests
-{
- public class UnitTest1
- {
- [Fact]
- public void Test1()
- {
-
- }
- }
-}
diff --git a/src/Otp.NET/Otp.NET.csproj b/src/Otp.NET/Otp.NET.csproj index c9de44e..4460bcd 100755 --- a/src/Otp.NET/Otp.NET.csproj +++ b/src/Otp.NET/Otp.NET.csproj @@ -6,11 +6,10 @@ <Authors>Kyle Spearrin</Authors> <PackageProjectUrl>https://github.com/kspearrin/Otp.NET</PackageProjectUrl> <PackageLicenseUrl>https://raw.githubusercontent.com/kspearrin/Otp.NET/master/LICENSE.txt</PackageLicenseUrl> - <Title>Otp.NET</Title> <Description>An implementation of TOTP which is commonly used for multi factor authentication by using a shared key between the client and the server to generate and verify one time use codes. For documentation, visit https://github.com/kspearrin/Otp.NET</Description> - <Summary>An implementation of TOTP which is commonly used for multi factor authentication.</Summary> <PackageTags>otp,totp,2fa,two factor</PackageTags> <PackageIconUrl>http://i.imgur.com/XFfC64v.png</PackageIconUrl> + <RepositoryUrl>https://github.com/kspearrin/Otp.NET</RepositoryUrl> </PropertyGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> diff --git a/src/Otp.NET/Properties/AssemblyInfo.cs b/src/Otp.NET/Properties/AssemblyInfo.cs deleted file mode 100644 index 6a7ee22..0000000 --- a/src/Otp.NET/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTrademark("")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. -[assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("e630b67f-150a-4978-a2dd-51b8d8e783ef")] |