You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Tensorflow.Keras.UnitTest.csproj 2.9 kB

2 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <IsPackable>false</IsPackable>
  5. <Platforms>AnyCPU;x64</Platforms>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <DefineConstants>DEBUG;TRACE</DefineConstants>
  9. <PlatformTarget>x64</PlatformTarget>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
  13. <PackageReference Include="MSTest.TestAdapter" Version="2.2.8" />
  14. <PackageReference Include="MSTest.TestFramework" Version="2.2.8" />
  15. <PackageReference Include="coverlet.collector" Version="3.2.0">
  16. <PrivateAssets>all</PrivateAssets>
  17. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  18. </PackageReference>
  19. </ItemGroup>
  20. <ItemGroup>
  21. <ProjectReference Include="..\..\src\TensorFlowNET.Keras\Tensorflow.Keras.csproj" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <None Update="Assets\simple_model_from_auto_compile\fingerprint.pb">
  25. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  26. </None>
  27. <None Update="Assets\simple_model_from_auto_compile\keras_metadata.pb">
  28. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  29. </None>
  30. <None Update="Assets\simple_model_from_auto_compile\saved_model.pb">
  31. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  32. </None>
  33. <None Update="Assets\simple_model_from_auto_compile\variables\variables.data-00000-of-00001">
  34. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  35. </None>
  36. <None Update="Assets\simple_model_from_auto_compile\variables\variables.index">
  37. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  38. </None>
  39. <None Update="Assets\simple_model_from_auto_compile\kernel1.npy">
  40. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  41. </None>
  42. <None Update="Assets\simple_model_from_auto_compile\bias0.npy">
  43. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  44. </None>
  45. <None Update="Assets\python_func_model\fingerprint.pb">
  46. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  47. </None>
  48. <None Update="Assets\python_func_model\keras_metadata.pb">
  49. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  50. </None>
  51. <None Update="Assets\python_func_model\saved_model.pb">
  52. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  53. </None>
  54. <None Update="Assets\python_func_model\variables\variables.data-00000-of-00001">
  55. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  56. </None>
  57. <None Update="Assets\python_func_model\variables\variables.index">
  58. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  59. </None>
  60. </ItemGroup>
  61. </Project>