Skip to content

Commit

Permalink
Forced extension of downloaded config file to .json
Browse files Browse the repository at this point in the history
  • Loading branch information
spaghettidba committed Jun 22, 2022
1 parent 6517d6a commit 4ad11d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion XESmartTarget/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ private static void ProcessTarget(Options options)
&& (outUri.Scheme == Uri.UriSchemeHttp || outUri.Scheme == Uri.UriSchemeHttps))
{
// save the URI to a file and point configuration there
options.ConfigurationFile = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.csv");
options.ConfigurationFile = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.json");
using (var client = new WebClient())
{
try
Expand Down

0 comments on commit 4ad11d7

Please sign in to comment.