-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathGym.Rendering.Avalonia.csproj
More file actions
51 lines (51 loc) · 2.34 KB
/
Copy pathGym.Rendering.Avalonia.csproj
File metadata and controls
51 lines (51 loc) · 2.34 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>netcoreapp3.1;net6.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageId>Gym.NET.Rendering.Avalonia</PackageId>
<Version>0.2.0</Version>
<Authors>Eli Belash</Authors>
<Company>SciSharp STACK</Company>
<Product>Gym.NET.Rendering.Avalonia</Product>
<Description>openai/gym's popular toolkit for developing and comparing reinforcement learning algorithms port to C#. This package contains ported gym's environments.</Description>
<Copyright>2019 © SciSharp STACK Team</Copyright>
<PackageLicenseUrl>https://github.com/SciSharp/Gym.NET/blob/master/README.md</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/SciSharp/Gym.NET</PackageProjectUrl>
<PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&v=4</PackageIconUrl>
<RepositoryUrl>https://github.com/SciSharp/Gym.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>gym, openai, reinforcement learning,learning,learning,NumPy, NumSharp, MachineLearning</PackageTags>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<AssemblyVersion>0.1.0.2</AssemblyVersion>
<FileVersion>0.1.0.2</FileVersion>
<ApplicationIcon />
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Compile Update="**\*.xaml.cs">
<DependentUpon>%(Filename)</DependentUpon>
</Compile>
<AvaloniaResource Include="**\*.xaml">
<SubType>Designer</SubType>
</AvaloniaResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.18" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.18" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.7" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Gym.Environments\Gym.Environments.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="App.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
<None Update="AvaloniaEnvViewer.xaml">
<Generator>MSBuild:Compile</Generator>
</None>
</ItemGroup>
</Project>