-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRumahTuya.csproj
30 lines (25 loc) · 1.04 KB
/
RumahTuya.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>0.2.0.0</AssemblyVersion>
<FileVersion>0.2.0.0</FileVersion>
<Version>0.2.0</Version>
<PackageProjectUrl>https://github.com/f2face/RumahTuya.Core</PackageProjectUrl>
<RepositoryUrl>https://github.com/f2face/RumahTuya.Core</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>f2face</Authors>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ColorMinePortable" Version="2.0.1" />
<PackageReference Include="refit" Version="5.1.67" />
</ItemGroup>
</Project>