-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCartPoleForTesting.csproj
More file actions
49 lines (32 loc) · 1.58 KB
/
CartPoleForTesting.csproj
File metadata and controls
49 lines (32 loc) · 1.58 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>exe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<UseWindowsForms>true</UseWindowsForms>
<Nullable>enable</Nullable>
<LangVersion>12.0</LangVersion>
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Gym.NET" Version="0.2.0" />
<PackageReference Include="Gym.NET.Environments" Version="0.2.0" />
<PackageReference Include="Gym.NET.Rendering.WinForm" Version="0.2.0" />
<PackageReference Include="HIC.System.Windows.Forms.DataVisualization" Version="1.0.1" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.6" />
<PackageReference Include="TorchSharp-cuda-windows" Version="0.102.2" />
<PackageReference Include="TorchVision" Version="0.102.2" />
<PackageReference Include="WinForms.DataVisualization" Version="1.8.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="RLMatrix" Version="0.4.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\RLMat2\RLMatrix\src\RLMatrix.Toolkit\RLMatrix.Toolkit.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
</ItemGroup>
<!--<ItemGroup>
<ProjectReference Include="..\..\RLMat2\RLMatrix\src\RLMatrix.Common\RLMatrix.Common.csproj" />
<ProjectReference Include="..\..\RLMat2\RLMatrix\src\RLMatrix.Remote\RLMatrix.Remote.csproj" />
<ProjectReference Include="..\..\RLMat2\RLMatrix\src\RLMatrix\RLMatrix.csproj" />
</ItemGroup>-->
</Project>