-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathConnect.lib.core.csproj
More file actions
53 lines (45 loc) · 2.04 KB
/
Copy pathConnect.lib.core.csproj
File metadata and controls
53 lines (45 loc) · 2.04 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Authors>audiamus</Authors>
<RootNamespace>core.audiamus.connect</RootNamespace>
<AssemblyName>audiamus.connect.core</AssemblyName>
<Authors>audiamus</Authors>
<Copyright>Copyright © 2021 - $([System.DateTime]::UtcNow.Year) audiamus ($([System.DateTime]::UtcNow.ToString("s")))</Copyright>
<AssemblyVersion>0.13.1.0</AssemblyVersion>
<FileVersion>0.13.1.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AAXClean" Version="0.4.9" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.43" />
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Audible.json.core\Audible.json.core.csproj" />
<ProjectReference Include="..\AuxLib.core\AuxLib.core.csproj" />
<ProjectReference Include="..\BooksDatabase.core\BooksDatabase.core.csproj" />
<ProjectReference Include="..\CommonTypes.lib.core\CommonTypes.lib.core.csproj" />
<ProjectReference Include="..\CommonUtil.lib.core\CommonUtil.lib.core.csproj" />
<ProjectReference Include="..\SystemMgmt.core\SystemMgmt.core.csproj" />
<ProjectReference Include="..\TreeDecomposition.core\TreeDecomposition.core.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\Resources.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
</Project>