54 lines
2.9 KiB
XML
54 lines
2.9 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<OutputType>WinExe</OutputType>
|
|
<RootNamespace>HorseRacingPredictor</RootNamespace>
|
|
<AssemblyName>HorseRacingPredictor</AssemblyName>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
|
<OutputPath>bin\x64\Debug\</OutputPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
|
<OutputPath>bin\x64\Release\</OutputPath>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="CsvHelper" Version="33.1.0" />
|
|
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="11.0.0-preview.2.26159.112" />
|
|
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
|
|
<PackageReference Include="Microsoft.Bcl.Numerics" Version="11.0.0-preview.2.26159.112" />
|
|
<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.0" />
|
|
<PackageReference Include="Microsoft.ML" Version="6.0.0-preview.26160.2" />
|
|
<PackageReference Include="Microsoft.ML.CpuMath" Version="6.0.0-preview.26160.2" />
|
|
<PackageReference Include="Microsoft.ML.DataView" Version="6.0.0-preview.26160.2" />
|
|
<PackageReference Include="Microsoft.ML.FastTree" Version="6.0.0-preview.26160.2" />
|
|
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.3908-prerelease" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.5-beta1" />
|
|
<PackageReference Include="RestSharp" Version="114.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.5" />
|
|
<PackageReference Include="System.Numerics.Tensors" Version="11.0.0-preview.2.26159.112" />
|
|
</ItemGroup>
|
|
<ItemGroup Label="Compile items now included by globbing that were not in the original project file">
|
|
<Compile Remove="UI\NavButton.cs" />
|
|
<Compile Remove="UI\ModernTheme.cs" />
|
|
<Compile Remove="UI\ModernProgressBar.cs" />
|
|
<Compile Remove="UI\ModernButton.cs" />
|
|
<Compile Remove="UI\Controls\ModernTextBox.cs" />
|
|
<Compile Remove="UI\Controls\ModernTabControl.cs" />
|
|
<Compile Remove="UI\Controls\ModernProgressBar.cs" />
|
|
<Compile Remove="UI\Controls\ModernPanel.cs" />
|
|
<Compile Remove="UI\Controls\ModernLabel.cs" />
|
|
<Compile Remove="UI\Controls\ModernDateTimePicker.cs" />
|
|
<Compile Remove="UI\Controls\ModernDataGridView.cs" />
|
|
<Compile Remove="UI\Controls\ModernButton.cs" />
|
|
<Compile Remove="UI\CardPanel.cs" />
|
|
<Compile Remove="Program.cs" />
|
|
<Compile Remove="Main.Designer.cs" />
|
|
<Compile Remove="Main.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup Label="EmbeddedResource items now included by globbing that were not in the original project file">
|
|
<EmbeddedResource Remove="Main.resx" />
|
|
</ItemGroup>
|
|
</Project> |