31 lines
1.2 KiB
XML
Executable File
31 lines
1.2 KiB
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Title>Luski.net</Title>
|
|
<Authors>JacobTech</Authors>
|
|
<Company>JacobTech, LLC</Company>
|
|
<Description>A wrapper for the luski API</Description>
|
|
<PackageProjectUrl>https://www.jacobtech.com/Luski/Documentation</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/JacobTech-com/Luski.net</RepositoryUrl>
|
|
<IncludeSymbols>True</IncludeSymbols>
|
|
<FileVersion>1.0.0</FileVersion>
|
|
<Version>2.0.0-alpha24</Version>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="JacobTechEncryption" Version="1.0.2" />
|
|
<PackageReference Include="websocketsharp.core" Version="1.0.0" />
|
|
</ItemGroup>
|
|
|
|
|
|
<Target Name="CustomActionsAfterPublish" AfterTargets="Pack">
|
|
<Message Text="Actions AfterPublish: $(PackageId).$(PackageVersion).nupkg" Importance="high" />
|
|
<Exec Command="nuget push -Source https://nuget.jacobtech.com/v3/index.json bin/Release/$(PackageId).$(PackageVersion).nupkg" />
|
|
</Target>
|
|
|
|
</Project>
|