2020-03-13 19:19:55 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
2019-09-07 10:12:24 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<RootNamespace>CC_Functions.W32</RootNamespace>
|
|
|
|
|
<AssemblyName>CC-Functions.W32</AssemblyName>
|
2020-01-10 16:52:06 +01:00
|
|
|
|
<LangVersion>8</LangVersion>
|
|
|
|
|
<Nullable>enable</Nullable>
|
2020-03-20 15:13:09 +01:00
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
2020-03-13 19:19:55 +01:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<TargetFrameworks>net461;netcoreapp3.1</TargetFrameworks>
|
2020-03-20 13:36:49 +01:00
|
|
|
|
<Deterministic>false</Deterministic>
|
2020-03-20 15:13:09 +01:00
|
|
|
|
<!--<GeneratePackageOnBuild>true</GeneratePackageOnBuild>-->
|
2020-03-20 13:52:14 +01:00
|
|
|
|
<Authors>CC24</Authors>
|
|
|
|
|
<Description>W32 Additions for CC-Functions</Description>
|
|
|
|
|
<Copyright>Copyright 2020</Copyright>
|
|
|
|
|
<PackageProjectUrl>https://github.com/JFronny/CC-Functions</PackageProjectUrl>
|
|
|
|
|
<RepositoryUrl>https://github.com/JFronny/CC-Functions.git</RepositoryUrl>
|
|
|
|
|
<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>
|
2019-09-07 10:12:24 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2020-01-10 16:52:06 +01:00
|
|
|
|
<DocumentationFile>bin\Debug\W32.xml</DocumentationFile>
|
2019-09-07 10:12:24 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2020-01-10 16:52:06 +01:00
|
|
|
|
<DocumentationFile>bin\Release\W32.xml</DocumentationFile>
|
2019-09-07 10:12:24 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|