onnxruntime/csharp
Scott McKay fb4a8e12fc
Limit inclusion of Xamarin mobile target frameworks. (#9834)
- Only set them as targets for the ORT nuget package
    - Use OrtPackageId as the condition for inclusion, if installed
      - need to do the nuget restore via msbuild so that this property is set correctly
  - Add desktop-only version of the C# sln as there is no way to exclude the mobile specific csproj's from an sln
    - use this when applicable if someone is running build.py with the `--build_nuget` flag

Other
  - remove attempt to include symbols in the nuget package as nuget doesn't support symbols in native packages
  - update build.py to use `nuget` and not a windows specific path and filename for a linux build with `--build_nuget`
2021-11-23 11:29:53 +10:00
..
sample Remove netcoreapp2.1 target as it is EOL and out of support. Attempting to use it with VS now causes unit test run failures. (#9603) 2021-10-29 11:11:22 +10:00
src Limit inclusion of Xamarin mobile target frameworks. (#9834) 2021-11-23 11:29:53 +10:00
test Expose IOBinding SynchronizeInputs/Outputs via C/C++/C# And Python APIs (#9823) 2021-11-22 09:45:31 -08:00
testdata Add Python checks pipeline (#7032) 2021-08-09 10:37:05 -07:00
tools/Microsoft.ML.OnnxRuntime.PerfTool Remove netcoreapp2.1 target as it is EOL and out of support. Attempting to use it with VS now causes unit test run failures. (#9603) 2021-10-29 11:11:22 +10:00
.clang-format Add Xamarin support (#9436) 2021-10-27 20:07:07 +10:00
Directory.Build.props.in Conditionally export execution provider apis in chsarp (#1724) 2019-09-09 11:17:44 -07:00
Nuget.CSharp.config Initial bootstrap commit. 2018-11-19 16:48:22 -08:00
OnnxRuntime.CSharp.proj Limit inclusion of Xamarin mobile target frameworks. (#9834) 2021-11-23 11:29:53 +10:00
OnnxRuntime.CSharp.sln Add Xamarin support (#9436) 2021-10-27 20:07:07 +10:00
OnnxRuntime.DesktopOnly.CSharp.sln Limit inclusion of Xamarin mobile target frameworks. (#9834) 2021-11-23 11:29:53 +10:00
OnnxRuntime.snk Copy System.Numerics.Tensors sources from dotnet/corefx into onnxruntime (#1605) 2019-08-15 17:28:47 -07:00
readme.txt Limit inclusion of Xamarin mobile target frameworks. (#9834) 2021-11-23 11:29:53 +10:00

The main solution file is OnnxRuntime.CSharp.sln. This includes desktop and Xamarin mobile projects.
OnnxRuntime.DesktopOnly.CSharp.sln is a copy of that with all the mobile projects removed. This is 
due to there being no way to selectively exclude a csproj from the sln if Xamarin isn't available. 

If changes are required, either update the main solution first and copy the relevant changes across,
 or copy the entire file and remove the mobile projects (anything with iOS, Android or Droid in the name).