forked from loafle/openapi-generator-original
[csharp] Fix project glob pattern (#5605)
This fixes the glob pattern to remove hard-coded namespaces, and exclude the obj folder. This removes a newly introduced issue that breaks apiPackage and modelPackage support and fixes a problem with Xamarin pulling in obj/**.cs when globbing **/*.cs.
This commit is contained in:
@@ -78,7 +78,8 @@
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="**\*.cs"/>
|
||||
<Compile Include="**\*.cs"
|
||||
Exclude="obj\**"/>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
|
||||
Reference in New Issue
Block a user