Bug 1648030 Comment 1 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

Regarding to *glean-core/csharp/csharp.sln* x86 tests failures, we can just add the below code into *.csproj.
```
    <WinFFIDirectories Condition="'$(Platform)' == 'x86'">i686-pc-windows-msvc</WinFFIDirectories>
    <WinFFIDirectories Condition="'$(Platform)' == 'AnyCPU'">x86_64-pc-windows-msvc</WinFFIDirectories>

    ----
     
    <Content Condition="$(IsWindows) == true" Include="../../target/$(WinFFIDirectories)/$(Configuration.ToLowerInvariant())/glean_ffi.dll" CopyToOutputDirectory="Always" />
```

After that, if users ever build x86|x86_64 version of `glean_ffi.dll`, our project will help copy it to the right folder.
Regarding to *glean-core/csharp/csharp.sln* x86 tests failures in local, we can just add the below code into *.csproj.
```
    <WinFFIDirectories Condition="'$(Platform)' == 'x86'">i686-pc-windows-msvc</WinFFIDirectories>
    <WinFFIDirectories Condition="'$(Platform)' == 'AnyCPU'">x86_64-pc-windows-msvc</WinFFIDirectories>

    ----
     
    <Content Condition="$(IsWindows) == true" Include="../../target/$(WinFFIDirectories)/$(Configuration.ToLowerInvariant())/glean_ffi.dll" CopyToOutputDirectory="Always" />
```

After that, if users ever build x86|x86_64 version of `glean_ffi.dll`, our project will help copy it to the right folder.
Regarding to *glean-core/csharp/csharp.sln* x86 tests failures in local, we can just add the below code into *.csproj.
```
    <WinFFIDirectories Condition="'$(Platform)' == 'x86'">i686-pc-windows-msvc</WinFFIDirectories>
    <WinFFIDirectories Condition="'$(Platform)' == 'AnyCPU'">x86_64-pc-windows-msvc</WinFFIDirectories>

    ----
     
    <Content Condition="$(IsWindows) == true" Include="../../target/$(WinFFIDirectories)/$(Configuration.ToLowerInvariant())/glean_ffi.dll" CopyToOutputDirectory="Always" />
```

After that, if users ever build x86|x86_64 versions of `glean_ffi.dll`, our project will help copy it to the right folder.
Regarding to *glean-core/csharp/csharp.sln* x86 tests failures in local, we can just add the below code into *.csproj.
```
    <WinFFIDirectories Condition="'$(Platform)' == 'x86'">i686-pc-windows-msvc</WinFFIDirectories>
    <WinFFIDirectories Condition="'$(Platform)' == 'AnyCPU'">x86_64-pc-windows-msvc</WinFFIDirectories>

    ----
     
    <Content Condition="$(IsWindows) == true" Include="../../target/$(WinFFIDirectories)/$(Configuration.ToLowerInvariant())/glean_ffi.dll" CopyToOutputDirectory="Always" />
```

After that, if users ever build x86|x86_64 versions of `glean_ffi.dll`, our project will help copy them into the right folder.

Back to Bug 1648030 Comment 1