This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
CC-Functions/Misc/Misc.csproj

43 lines
1.9 KiB
XML
Raw Normal View History

2020-04-04 16:36:13 +02:00
<Project Sdk="Microsoft.NET.Sdk">
2019-09-07 10:12:24 +02:00
<PropertyGroup>
<OutputType>Library</OutputType>
<RootNamespace>CC_Functions.Misc</RootNamespace>
<AssemblyName>CC_Functions.Misc</AssemblyName>
2020-01-10 16:52:06 +01:00
<LangVersion>8</LangVersion>
2020-03-20 13:36:49 +01:00
<Deterministic>false</Deterministic>
2020-03-20 13:52:14 +01:00
<PackageId>CC-Functions.Misc</PackageId>
<Title>CC-Functions.Misc</Title>
2020-09-11 10:38:55 +02:00
<Authors>JFronny</Authors>
2020-03-20 13:52:14 +01:00
<Description>Random pieces of code used across my projects. I do NOT recommend using this in your own project!</Description>
<Copyright>Copyright 2020</Copyright>
2020-09-11 10:38:55 +02:00
<PackageProjectUrl>https://gitlab.com/JFronny/CC-Functions</PackageProjectUrl>
<RepositoryUrl>https://gitlab.com/JFronny/CC-Functions.git</RepositoryUrl>
2020-03-20 13:52:14 +01:00
<RepositoryType>git</RepositoryType>
2020-03-20 15:13:09 +01:00
<AssemblyVersion>1.1.*</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<VersionSuffix>0.0</VersionSuffix>
<PackageVersion>1.1.$(VersionSuffix)</PackageVersion>
2020-11-11 16:37:36 +01:00
<TargetFramework>netstandard2.1</TargetFramework>
2019-09-07 10:12:24 +02:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020-01-10 16:52:06 +01:00
<DocumentationFile>bin\Debug\Misc.xml</DocumentationFile>
2019-09-07 10:12:24 +02:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2020-01-10 16:52:06 +01:00
<DocumentationFile>bin\Release\Misc.xml</DocumentationFile>
2019-09-07 10:12:24 +02:00
</PropertyGroup>
2019-11-16 17:59:28 +01:00
<ItemGroup>
<EmbeddedResource Include="HIDClasses.txt" />
</ItemGroup>
2020-03-13 19:19:55 +01:00
<ItemGroup>
<PackageReference Include="System.Management" Version="5.0.0" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="5.0.0" />
2020-03-13 19:19:55 +01:00
</ItemGroup>
<ItemGroup>
<Reference Include="System.IO.Compression" Condition="'$(TargetFramework)' == 'net461'" />
<Reference Include="System.IO.Compression.FileSystem" Condition="'$(TargetFramework)' == 'net461'" />
</ItemGroup>
2020-09-11 10:38:55 +02:00
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
</ItemGroup>
</Project>